/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
nicmart
/
tree
/
src
/
Node
/
/home/techb158/ileadtechnology.com/vendor/nicmart/tree/src/Node
mkdir
upload
Name
Size
Mode
Actions
Node.php
611
0644
edit
dl
rm
NodeInterface.php
3257
0644
edit
dl
rm
NodeTrait.php
4455
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/nicmart/tree/src/Node/Node.php
(611B)
<?php /** * Copyright (c) 2013-2020 Nicolò Martini * * For the full copyright and license information, please view * the LICENSE.md file that was distributed with this source code. * * @see https://github.com/nicmart/Tree */ namespace Tree\Node; class Node implements NodeInterface { use NodeTrait; /** * @param mixed $value * @param NodeInterface[] $children */ public function __construct($value = null, array $children = []) { $this->setValue($value); if (!empty($children)) { $this->setChildren($children); } } }
Save
setValue($value); if (!empty($children)) { $this->setChildren($children); } } }