2015-04-22 18:24:10 +02:00
|
|
|
<?php namespace Todaymade\Daux\Tree;
|
|
|
|
|
2015-04-23 00:32:30 +02:00
|
|
|
class Raw extends Entry
|
|
|
|
{
|
|
|
|
public function __construct($path = '', $parents = array())
|
|
|
|
{
|
2015-04-22 18:24:10 +02:00
|
|
|
parent::__construct($path, $parents);
|
|
|
|
|
|
|
|
$this->value = $this->uri;
|
|
|
|
}
|
|
|
|
}
|