12 Zeilen
224 B
PHP
12 Zeilen
224 B
PHP
<?php namespace Todaymade\Daux\Tree;
|
|
|
|
class Raw extends Entry
|
|
{
|
|
public function __construct($path = '', $parents = array())
|
|
{
|
|
parent::__construct($path, $parents);
|
|
|
|
$this->value = $this->uri;
|
|
}
|
|
}
|