/
home
/
u417168693
/
domains
/
navrangaromacandles.com
/
public_html
/
vendor
/
nicmart
/
tree
/
src
/
Node
/
/home/u417168693/domains/navrangaromacandles.com/public_html/vendor/nicmart/tree/src/Node
mkdir
upload
Name
Size
Mode
Actions
Node.php
625
0644
edit
dl
rm
NodeInterface.php
3006
0644
edit
dl
rm
NodeTrait.php
4328
0644
edit
dl
rm
Edit:
/home/u417168693/domains/navrangaromacandles.com/public_html/vendor/nicmart/tree/src/Node/Node.php
(625B)
<?php /** * Copyright (c) 2013-2024 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 array<int, NodeInterface> $children */ public function __construct( mixed $value = null, array $children = [], ) { $this->setValue($value); if ([] === $children) { return; } $this->setChildren($children); } }
Save
cmd:
run