| @@ 32-36 (lines=5) @@ | ||
| 29 | $const->const = true; |
|
| 30 | $const->depth = $o->depth + 1; |
|
| 31 | $const->owner_class = $class; |
|
| 32 | if (KINT_PHP53) { |
|
| 33 | $const->access_path = '\\'.$class.'::'.$const->name; |
|
| 34 | } else { |
|
| 35 | $const->access_path = $class.'::'.$const->name; |
|
| 36 | } |
|
| 37 | $const->operator = Kint_Object::OPERATOR_STATIC; |
|
| 38 | $const = $this->parser->parse($val, $const); |
|
| 39 | ||
| @@ 80-84 (lines=5) @@ | ||
| 77 | } |
|
| 78 | ||
| 79 | if ($this->parser->childHasPath($o, $prop)) { |
|
| 80 | if (KINT_PHP53) { |
|
| 81 | $prop->access_path = '\\'.$prop->owner_class.'::'.$prop->name; |
|
| 82 | } else { |
|
| 83 | $prop->access_path = $prop->owner_class.'::'.$prop->name; |
|
| 84 | } |
|
| 85 | } |
|
| 86 | ||
| 87 | if (KINT_PHP53) { |
|