/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/TextFormatter.php (4986B)
export($node, $indent); } /** * Convert a tree of NodeInterface objects into a plain text string. * * @param \Cake\Error\Debug\NodeInterface $var The node tree to dump. * @param int $indent The current indentation level. * @return string */ protected function export(NodeInterface $var, int $indent): string { if ($var instanceof ScalarNode) { switch ($var->getType()) { case 'bool': return $var->getValue() ? 'true' : 'false'; case 'null': return 'null'; case 'string': return "'" . (string)$var->getValue() . "'"; default: return "({$var->getType()}) {$var->getValue()}"; } } if ($var instanceof ArrayNode) { return $this->exportArray($var, $indent + 1); } if ($var instanceof ClassNode || $var instanceof ReferenceNode) { return $this->exportObject($var, $indent + 1); } if ($var instanceof SpecialNode) { return $var->getValue(); } throw new RuntimeException('Unknown node received ' . get_class($var)); } /** * Export an array type object * * @param \Cake\Error\Debug\ArrayNode $var The array to export. * @param int $indent The current indentation level. * @return string Exported array. */ protected function exportArray(ArrayNode $var, int $indent): string { $out = '['; $break = "\n" . str_repeat(' ', $indent); $end = "\n" . str_repeat(' ', $indent - 1); $vars = []; foreach ($var->getChildren() as $item) { $val = $item->getValue(); $vars[] = $break . $this->export($item->getKey(), $indent) . ' => ' . $this->export($val, $indent); } if (count($vars)) { return $out . implode(',', $vars) . $end . ']'; } return $out . ']'; } /** * Handles object to string conversion. * * @param \Cake\Error\Debug\ClassNode|\Cake\Error\Debug\ReferenceNode $var Object to convert. * @param int $indent Current indentation level. * @return string * @see \Cake\Error\Debugger::exportVar() */ protected function exportObject($var, int $indent): string { $out = ''; $props = []; if ($var instanceof ReferenceNode) { return "object({$var->getValue()}) id:{$var->getId()} {}"; } $out .= "object({$var->getValue()}) id:{$var->getId()} {"; $break = "\n" . str_repeat(' ', $indent); $end = "\n" . str_repeat(' ', $indent - 1) . '}'; foreach ($var->getChildren() as $property) { $visibility = $property->getVisibility(); $name = $property->getName(); if ($visibility && $visibility !== 'public') { $props[] = "[{$visibility}] {$name} => " . $this->export($property->getValue(), $indent); } else { $props[] = "{$name} => " . $this->export($property->getValue(), $indent); } } if (count($props)) { return $out . $break . implode($break, $props) . $end; } return $out . '}'; } }