/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/DebugContext.php (2538B)
maxDepth = $maxDepth; $this->refs = new SplObjectStorage(); } /** * Return a clone with increased depth. * * @return static */ public function withAddedDepth() { $new = clone $this; $new->depth += 1; return $new; } /** * Get the remaining depth levels * * @return int */ public function remainingDepth(): int { return $this->maxDepth - $this->depth; } /** * Get the reference ID for an object. * * If this object does not exist in the reference storage, * it will be added and the id will be returned. * * @param object $object The object to get a reference for. * @return int */ public function getReferenceId(object $object): int { if ($this->refs->contains($object)) { return $this->refs[$object]; } $refId = $this->refs->count(); $this->refs->attach($object, $refId); return $refId; } /** * Check whether an object has been seen before. * * @param object $object The object to get a reference for. * @return bool */ public function hasReference(object $object): bool { return $this->refs->contains($object); } }