/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/PropertyNode.php (1997B)
name = $name;
$this->visibility = $visibility;
$this->value = $value;
}
/**
* Get the value
*
* @return \Cake\Error\Debug\NodeInterface
*/
public function getValue(): NodeInterface
{
return $this->value;
}
/**
* Get the property visibility
*
* @return string
*/
public function getVisibility(): ?string
{
return $this->visibility;
}
/**
* Get the property name
*
* @return string
*/
public function getName(): string
{
return $this->name;
}
/**
* @inheritDoc
*/
public function getChildren(): array
{
return [$this->value];
}
}