daux.io/libs/Tree/Raw.php
Stéphane Goetz ecd5efe758 Extract tree builder
Add related files directly in the documentation
2015-07-20 20:49:09 +02:00

10 regels
220 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;
}
}