htdocs/class/libraries/vendor/kint-php/kint/src/Object/Method.php 1 location
|
@@ 59-63 (lines=5) @@
|
| 56 |
|
$this->final = $method->isFinal(); |
| 57 |
|
$this->owner_class = $method->getDeclaringClass()->name; |
| 58 |
|
$this->access = Kint_Object::ACCESS_PUBLIC; |
| 59 |
|
if ($method->isProtected()) { |
| 60 |
|
$this->access = Kint_Object::ACCESS_PROTECTED; |
| 61 |
|
} elseif ($method->isPrivate()) { |
| 62 |
|
$this->access = Kint_Object::ACCESS_PRIVATE; |
| 63 |
|
} |
| 64 |
|
} |
| 65 |
|
|
| 66 |
|
$docstring = new Kint_Object_Representation_Docstring( |
htdocs/class/libraries/vendor/kint-php/kint/src/Parser/ClassStatics.php 1 location
|
@@ 73-77 (lines=5) @@
|
| 70 |
|
} |
| 71 |
|
|
| 72 |
|
$prop->access = Kint_Object::ACCESS_PUBLIC; |
| 73 |
|
if ($static->isProtected()) { |
| 74 |
|
$prop->access = Kint_Object::ACCESS_PROTECTED; |
| 75 |
|
} elseif ($static->isPrivate()) { |
| 76 |
|
$prop->access = Kint_Object::ACCESS_PRIVATE; |
| 77 |
|
} |
| 78 |
|
|
| 79 |
|
if ($this->parser->childHasPath($o, $prop)) { |
| 80 |
|
if (KINT_PHP53) { |