for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* components
*
* @author Wolfy-J
*/
namespace Spiral\ORM\Entities\Nodes;
* Provides ability to fetch node context.
abstract class OutputNode extends AbstractNode
{
* Array used to aggregate all nested node results in a form of tree.
* @var array
protected $result = [];
* Get resulted tree.
* @return array
public function getResult(): array
return $this->result;
}
* Destructing.
public function __destruct()
$this->result = [];
parent::__destruct();