16 lines
265 B
PHP
16 lines
265 B
PHP
<?php namespace Todaymade\Daux\Tree;
|
|
|
|
class Root extends Directory
|
|
{
|
|
/**
|
|
* The root doesn't have a parent
|
|
*
|
|
* @param string $uri
|
|
*/
|
|
public function __construct($uri)
|
|
{
|
|
$this->setUri($uri);
|
|
$this->path = $uri;
|
|
}
|
|
}
|