/var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Error/Debug
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/cakephp/cakephp/src/Error/Debug/ClassNode.php (1946B)
class = $class;
$this->id = $id;
}
/**
* Add a property
*
* @param \Cake\Error\Debug\PropertyNode $node The property to add.
* @return void
*/
public function addProperty(PropertyNode $node): void
{
$this->properties[] = $node;
}
/**
* Get the class name
*
* @return string
*/
public function getValue(): string
{
return $this->class;
}
/**
* Get the reference id
*
* @return int
*/
public function getId(): int
{
return $this->id;
}
/**
* Get property nodes
*
* @return \Cake\Error\Debug\PropertyNode[]
*/
public function getChildren(): array
{
return $this->properties;
}
}