daux.io/libs/Tree/Root.php
Stéphane Goetz 7dc7c045d4 Bugfixes
2015-07-20 20:51:32 +02:00

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;
}
}