/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Error/Debug
NameSizeModeActions
ArrayItemNode.php16810644editdlrm
ArrayNode.php17090644editdlrm
ClassNode.php19560644editdlrm
ConsoleFormatter.php77850644editdlrm
DebugContext.php25380644editdlrm
dumpHeader.html73180644editdlrm
FormatterInterface.php13800644editdlrm
HtmlFormatter.php86390644editdlrm
NodeInterface.php10630644editdlrm
PropertyNode.php20020644editdlrm
ReferenceNode.php16800644editdlrm
ScalarNode.php15720644editdlrm
SpecialNode.php12970644editdlrm
TextFormatter.php49860644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Error/Debug/ClassNode.php (1956B)
*/ private $properties = []; /** * Constructor * * @param string $class The class name * @param int $id The reference id of this object in the DumpContext */ public function __construct(string $class, int $id) { $this->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 array<\Cake\Error\Debug\PropertyNode> */ public function getChildren(): array { return $this->properties; } }