BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
.
/
app.imagivibe.com
/
vendor
/
nicmart
/
tree
/
src
/
Node
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Node.php
<?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
Cancel