Use reflection to get Definition props (now includes fqn and declarationLine)
parent
586b0d6baf
commit
fc7d7f419e
|
@ -92,8 +92,8 @@ class ValidationTest extends TestCase
|
|||
$this->filterSkippedReferences($actualRefs);
|
||||
$actualDefs = $this->getTestValuesFromDefs($document->getDefinitions());
|
||||
|
||||
// TODO - there's probably a more PHP-typical way to do this. Need to compare the objects parsed from json files
|
||||
// to the real results. json_decode returns stdClass Objects, not arrays.
|
||||
// There's probably a more PHP-typical way to do this. Need to compare the objects parsed from json files
|
||||
// to the real objects.
|
||||
$refsAndDefs = array(
|
||||
'references' => json_decode(json_encode($actualRefs)),
|
||||
'definitions' => json_decode(json_encode($actualDefs))
|
||||
|
@ -126,14 +126,13 @@ class ValidationTest extends TestCase
|
|||
*/
|
||||
private function getTestValuesFromDefs($definitions): array
|
||||
{
|
||||
// TODO - use reflection to read these properties
|
||||
$propertyNames = ['extends', 'isGlobal', 'isStatic', 'canBeInstantiated', 'symbolInformation', 'type', 'documentation'];
|
||||
$propertyNames = get_class_vars(Definition::class);
|
||||
|
||||
$defsForAssert = [];
|
||||
foreach ($definitions as $definition) {
|
||||
$fqn = $definition->fqn;
|
||||
|
||||
foreach ($propertyNames as $propertyName) {
|
||||
foreach ($propertyNames as $propertyName => $value) {
|
||||
if ($propertyName === 'symbolInformation') {
|
||||
// Range is very often different - don't check it, for now
|
||||
unset($definition->$propertyName->location->range);
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"Fixtures\\Prophecy": {
|
||||
"fqn": "Fixtures\\Prophecy",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -25,9 +26,11 @@
|
|||
"containerName": "Fixtures"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace Fixtures\\Prophecy;",
|
||||
"documentation": null
|
||||
},
|
||||
"Fixtures\\Prophecy\\WithReturnTypehints": {
|
||||
"fqn": "Fixtures\\Prophecy\\WithReturnTypehints",
|
||||
"extends": [
|
||||
"Fixtures\\Prophecy\\EmptyClass"
|
||||
],
|
||||
|
@ -43,9 +46,11 @@
|
|||
"containerName": "Fixtures\\Prophecy"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class WithReturnTypehints extends EmptyClass",
|
||||
"documentation": null
|
||||
},
|
||||
"Fixtures\\Prophecy\\WithReturnTypehints->getSelf()": {
|
||||
"fqn": "Fixtures\\Prophecy\\WithReturnTypehints->getSelf()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -60,9 +65,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Object_",
|
||||
"type": {},
|
||||
"declarationLine": "public function getSelf(): self {",
|
||||
"documentation": null
|
||||
},
|
||||
"Fixtures\\Prophecy\\WithReturnTypehints->getName()": {
|
||||
"fqn": "Fixtures\\Prophecy\\WithReturnTypehints->getName()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -77,9 +84,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\String_",
|
||||
"type": {},
|
||||
"declarationLine": "public function getName(): string {",
|
||||
"documentation": null
|
||||
},
|
||||
"Fixtures\\Prophecy\\WithReturnTypehints->getParent()": {
|
||||
"fqn": "Fixtures\\Prophecy\\WithReturnTypehints->getParent()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -94,6 +103,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Object_",
|
||||
"type": {},
|
||||
"declarationLine": "public function getParent(): parent {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,6 +16,7 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"A": {
|
||||
"fqn": "A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,9 +16,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A {",
|
||||
"documentation": null
|
||||
},
|
||||
"A->foo": {
|
||||
"fqn": "A->foo",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -32,6 +35,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Array_",
|
||||
"type": {},
|
||||
"declarationLine": "protected $foo;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,6 +23,7 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"TestNamespace": {
|
||||
"fqn": "TestNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace TestNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"TestNamespace\\A": {
|
||||
"fqn": "TestNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -38,9 +41,11 @@
|
|||
"containerName": "TestNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A {",
|
||||
"documentation": null
|
||||
},
|
||||
"TestNamespace\\A->a": {
|
||||
"fqn": "TestNamespace\\A->a",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -55,6 +60,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Integer",
|
||||
"type": {},
|
||||
"declarationLine": "public $a;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"TestNamespace": {
|
||||
"fqn": "TestNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace TestNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"TestNamespace\\TestClass": {
|
||||
"fqn": "TestNamespace\\TestClass",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -38,9 +41,11 @@
|
|||
"containerName": "TestNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class TestClass",
|
||||
"documentation": null
|
||||
},
|
||||
"TestNamespace\\TestClass->testProperty": {
|
||||
"fqn": "TestNamespace\\TestClass->testProperty",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -55,9 +60,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "public $testProperty;",
|
||||
"documentation": null
|
||||
},
|
||||
"TestNamespace\\TestClass->testMethod()": {
|
||||
"fqn": "TestNamespace\\TestClass->testMethod()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -72,6 +79,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "public function testMethod($testParameter)",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -38,9 +41,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A::suite()": {
|
||||
"fqn": "MyNamespace\\A::suite()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": true,
|
||||
|
@ -55,6 +60,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "public static function suite()",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -38,9 +41,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A::suite()": {
|
||||
"fqn": "MyNamespace\\A::suite()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": true,
|
||||
|
@ -55,6 +60,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "public static function suite()",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -38,9 +41,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A::suite()": {
|
||||
"fqn": "MyNamespace\\A::suite()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": true,
|
||||
|
@ -55,6 +60,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "public static function suite()",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -38,9 +41,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->suite()": {
|
||||
"fqn": "MyNamespace\\A->suite()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -55,6 +60,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "public function suite()",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -19,9 +20,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\Mbstring": {
|
||||
"fqn": "MyNamespace\\Mbstring",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -35,9 +38,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class Mbstring",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\Mbstring::MB_CASE_FOLD": {
|
||||
"fqn": "MyNamespace\\Mbstring::MB_CASE_FOLD",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -52,6 +57,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Object_",
|
||||
"type": {},
|
||||
"declarationLine": "const MB_CASE_FOLD = PHP_INT_MAX;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"A": {
|
||||
"fqn": "A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -19,9 +20,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "interface A {",
|
||||
"documentation": null
|
||||
},
|
||||
"A->b()": {
|
||||
"fqn": "A->b()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -36,6 +39,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function b ($a = MY_CONSTANT);",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,6 +16,7 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,6 +16,7 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,6 +23,7 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"A": {
|
||||
"fqn": "A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,6 +16,7 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "interface A {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"B": {
|
||||
"fqn": "B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,6 +16,7 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace B;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"A": {
|
||||
"fqn": "A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,9 +16,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A {",
|
||||
"documentation": null
|
||||
},
|
||||
"A::$deprecationsTriggered": {
|
||||
"fqn": "A::$deprecationsTriggered",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": true,
|
||||
|
@ -32,6 +35,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Array_",
|
||||
"type": {},
|
||||
"declarationLine": "private static $deprecationsTriggered;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -38,9 +41,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A::a()": {
|
||||
"fqn": "MyNamespace\\A::a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": true,
|
||||
|
@ -55,6 +60,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "static function a() {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -38,9 +41,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A::a()": {
|
||||
"fqn": "MyNamespace\\A::a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": true,
|
||||
|
@ -55,6 +60,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "static function a() {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -37,9 +38,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -53,9 +56,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A::getInitializer()": {
|
||||
"fqn": "MyNamespace\\A::getInitializer()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": true,
|
||||
|
@ -70,6 +75,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "public static function getInitializer(ClassLoader $loader)",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -28,9 +29,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -44,9 +47,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->testRequest()": {
|
||||
"fqn": "MyNamespace\\A->testRequest()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -61,6 +66,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "public function testRequest()",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,9 +16,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\ParseErrorsTest": {
|
||||
"fqn": "MyNamespace\\ParseErrorsTest",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -31,9 +34,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class ParseErrorsTest {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\ParseErrorsTest->setUp()": {
|
||||
"fqn": "MyNamespace\\ParseErrorsTest->setUp()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -48,6 +53,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "public function setUp()",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -25,9 +26,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\ParseErrorsTest": {
|
||||
"fqn": "MyNamespace\\ParseErrorsTest",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -41,9 +44,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class ParseErrorsTest",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\ParseErrorsTest->setAccount()": {
|
||||
"fqn": "MyNamespace\\ParseErrorsTest->setAccount()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -58,6 +63,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "public function setAccount(AccountInterface $account)",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace1": {
|
||||
"fqn": "MyNamespace1",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -28,9 +29,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace1;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace1\\B": {
|
||||
"fqn": "MyNamespace1\\B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -44,9 +47,11 @@
|
|||
"containerName": "MyNamespace1"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace1\\B->b()": {
|
||||
"fqn": "MyNamespace1\\B->b()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -61,9 +66,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function b() {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace2": {
|
||||
"fqn": "MyNamespace2",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -77,9 +84,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace2;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace2\\A": {
|
||||
"fqn": "MyNamespace2\\A",
|
||||
"extends": [
|
||||
"MyNamespace2\\MyNamespace1\\B"
|
||||
],
|
||||
|
@ -95,9 +104,11 @@
|
|||
"containerName": "MyNamespace2"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A extends MyNamespace1\\B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace2\\A->a()": {
|
||||
"fqn": "MyNamespace2\\A->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -112,6 +123,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"Foo": {
|
||||
"fqn": "Foo",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,9 +16,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class Foo",
|
||||
"documentation": null
|
||||
},
|
||||
"Foo->fn()": {
|
||||
"fqn": "Foo->fn()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -32,6 +35,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Object_",
|
||||
"type": {},
|
||||
"declarationLine": "public function fn()",
|
||||
"documentation": "Foo"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"A": {
|
||||
"fqn": "A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,9 +16,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A {",
|
||||
"documentation": null
|
||||
},
|
||||
"A->b()": {
|
||||
"fqn": "A->b()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -32,6 +35,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function b() {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace1": {
|
||||
"fqn": "MyNamespace1",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -28,6 +29,7 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace1;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"B": {
|
||||
"fqn": "B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -37,6 +38,7 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace B;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"A\\B": {
|
||||
"fqn": "A\\B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,6 +16,7 @@
|
|||
"containerName": "A"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace A \\ B;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"LanguageServer\\Tests\\Utils": {
|
||||
"fqn": "LanguageServer\\Tests\\Utils",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -19,6 +20,7 @@
|
|||
"containerName": "LanguageServer\\Tests"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace LanguageServer\\Tests\\Utils;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -19,9 +20,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -35,9 +38,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->a()": {
|
||||
"fqn": "MyNamespace\\A->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -52,6 +57,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B": {
|
||||
"fqn": "MyNamespace\\B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -38,9 +41,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -54,9 +59,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->a()": {
|
||||
"fqn": "MyNamespace\\A->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -71,6 +78,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"A": {
|
||||
"fqn": "A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -19,9 +20,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A {",
|
||||
"documentation": null
|
||||
},
|
||||
"A->a()": {
|
||||
"fqn": "A->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -36,6 +39,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -19,9 +20,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\init()": {
|
||||
"fqn": "MyNamespace\\init()",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -36,6 +39,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function init(Hi $view)",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B": {
|
||||
"fqn": "MyNamespace\\B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -38,9 +41,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B->b()": {
|
||||
"fqn": "MyNamespace\\B->b()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -55,9 +60,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function b() {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [
|
||||
"MyNamespace\\B"
|
||||
],
|
||||
|
@ -73,9 +80,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A extends B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->a()": {
|
||||
"fqn": "MyNamespace\\A->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -90,6 +99,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -25,9 +26,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B": {
|
||||
"fqn": "MyNamespace\\B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -41,9 +44,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B->b()": {
|
||||
"fqn": "MyNamespace\\B->b()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -58,9 +63,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function b() {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [
|
||||
"MyNamespace\\B"
|
||||
],
|
||||
|
@ -76,9 +83,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A extends B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->a()": {
|
||||
"fqn": "MyNamespace\\A->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -93,6 +102,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"MyClass": {
|
||||
"fqn": "MyClass",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,9 +16,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class MyClass",
|
||||
"documentation": null
|
||||
},
|
||||
"MyClass->mainPropertyName": {
|
||||
"fqn": "MyClass->mainPropertyName",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -32,6 +35,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\String_",
|
||||
"type": {},
|
||||
"declarationLine": "protected $mainPropertyName;",
|
||||
"documentation": "The name of the main property, or NULL if there is none."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"MyClass": {
|
||||
"fqn": "MyClass",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,9 +16,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class MyClass",
|
||||
"documentation": null
|
||||
},
|
||||
"MyClass->mainPropertyName": {
|
||||
"fqn": "MyClass->mainPropertyName",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -32,6 +35,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\String_",
|
||||
"type": {},
|
||||
"declarationLine": "protected $mainPropertyName;",
|
||||
"documentation": "The name of the main property, or NULL if there is none."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"TestNamespace": {
|
||||
"fqn": "TestNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace TestNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"TestNamespace\\whatever()": {
|
||||
"fqn": "TestNamespace\\whatever()",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -39,6 +42,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Object_",
|
||||
"type": {},
|
||||
"declarationLine": "function whatever(TestClass $param): TestClass2 {",
|
||||
"documentation": "Aute duis elit reprehenderit tempor cillum proident anim laborum eu laboris reprehenderit ea incididunt."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -38,9 +41,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A::a()": {
|
||||
"fqn": "MyNamespace\\A::a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": true,
|
||||
|
@ -55,6 +60,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "static function a() {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -19,6 +20,7 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"A": {
|
||||
"fqn": "A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A {",
|
||||
"documentation": null
|
||||
},
|
||||
"A::$a": {
|
||||
"fqn": "A::$a",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": true,
|
||||
|
@ -39,6 +42,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\String_",
|
||||
"type": {},
|
||||
"declarationLine": "static $a;",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"TestClass": {
|
||||
"fqn": "TestClass",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -28,9 +29,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class TestClass implements TestInterface {",
|
||||
"documentation": null
|
||||
},
|
||||
"TestClass::$testProperty": {
|
||||
"fqn": "TestClass::$testProperty",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": true,
|
||||
|
@ -45,6 +48,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Array_",
|
||||
"type": {},
|
||||
"declarationLine": "public static $testProperty;",
|
||||
"documentation": "Lorem excepteur officia sit anim velit veniam enim."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -25,9 +26,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B": {
|
||||
"fqn": "MyNamespace\\B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -41,9 +44,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B->b()": {
|
||||
"fqn": "MyNamespace\\B->b()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -58,9 +63,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function b() {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [
|
||||
"MyNamespace\\B"
|
||||
],
|
||||
|
@ -76,9 +83,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A extends B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->a()": {
|
||||
"fqn": "MyNamespace\\A->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -93,6 +102,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -25,9 +26,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B": {
|
||||
"fqn": "MyNamespace\\B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -41,9 +44,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B->b()": {
|
||||
"fqn": "MyNamespace\\B->b()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -58,9 +63,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function b() {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [
|
||||
"MyNamespace\\B"
|
||||
],
|
||||
|
@ -76,9 +83,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A extends B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->a()": {
|
||||
"fqn": "MyNamespace\\A->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -93,6 +102,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -25,9 +26,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B": {
|
||||
"fqn": "MyNamespace\\B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -41,9 +44,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B->b()": {
|
||||
"fqn": "MyNamespace\\B->b()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -58,9 +63,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function b() {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [
|
||||
"MyNamespace\\B"
|
||||
],
|
||||
|
@ -76,9 +83,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A extends B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->a()": {
|
||||
"fqn": "MyNamespace\\A->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -93,6 +102,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -28,9 +29,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -44,9 +47,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A::suite()": {
|
||||
"fqn": "MyNamespace\\A::suite()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": true,
|
||||
|
@ -61,6 +66,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "public static function suite()",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -19,9 +20,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -35,9 +38,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->typesProvider()": {
|
||||
"fqn": "MyNamespace\\A->typesProvider()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -52,6 +57,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "public function typesProvider()",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -25,9 +26,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B": {
|
||||
"fqn": "MyNamespace\\B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -41,9 +44,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B->b()": {
|
||||
"fqn": "MyNamespace\\B->b()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -58,9 +63,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function b() {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [
|
||||
"MyNamespace\\B"
|
||||
],
|
||||
|
@ -76,9 +83,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A extends B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->a()": {
|
||||
"fqn": "MyNamespace\\A->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -93,6 +102,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -25,9 +26,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B": {
|
||||
"fqn": "MyNamespace\\B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -41,9 +44,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B->b()": {
|
||||
"fqn": "MyNamespace\\B->b()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -58,9 +63,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function b() {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [
|
||||
"MyNamespace\\B"
|
||||
],
|
||||
|
@ -76,9 +83,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A extends B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->a()": {
|
||||
"fqn": "MyNamespace\\A->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -93,6 +102,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -25,9 +26,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B": {
|
||||
"fqn": "MyNamespace\\B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -41,9 +44,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\B->b()": {
|
||||
"fqn": "MyNamespace\\B->b()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -58,9 +63,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function b() {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [
|
||||
"MyNamespace\\B"
|
||||
],
|
||||
|
@ -76,9 +83,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A extends B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->a()": {
|
||||
"fqn": "MyNamespace\\A->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -93,6 +102,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"MyNamespace": {
|
||||
"fqn": "MyNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace MyNamespace;",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A": {
|
||||
"fqn": "MyNamespace\\A",
|
||||
"extends": [
|
||||
"MyNamespace\\B"
|
||||
],
|
||||
|
@ -40,9 +43,11 @@
|
|||
"containerName": "MyNamespace"
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class A extends B {",
|
||||
"documentation": null
|
||||
},
|
||||
"MyNamespace\\A->a()": {
|
||||
"fqn": "MyNamespace\\A->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -57,6 +62,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"references": [],
|
||||
"definitions": {
|
||||
"B": {
|
||||
"fqn": "B",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -15,9 +16,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class B",
|
||||
"documentation": null
|
||||
},
|
||||
"B->hi": {
|
||||
"fqn": "B->hi",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -32,9 +35,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Integer",
|
||||
"type": {},
|
||||
"declarationLine": "public $hi;",
|
||||
"documentation": null
|
||||
},
|
||||
"B->a()": {
|
||||
"fqn": "B->a()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -49,6 +54,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "function a () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"SomeNamespace": {
|
||||
"fqn": "SomeNamespace",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -19,6 +20,7 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "namespace SomeNamespace { }",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"definitions": {
|
||||
"Foo": {
|
||||
"fqn": "Foo",
|
||||
"extends": [],
|
||||
"isGlobal": true,
|
||||
"isStatic": false,
|
||||
|
@ -22,9 +23,11 @@
|
|||
"containerName": ""
|
||||
},
|
||||
"type": null,
|
||||
"declarationLine": "class Foo {",
|
||||
"documentation": null
|
||||
},
|
||||
"Foo->bar": {
|
||||
"fqn": "Foo->bar",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -39,9 +42,11 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Object_",
|
||||
"type": {},
|
||||
"declarationLine": "protected $bar;",
|
||||
"documentation": null
|
||||
},
|
||||
"Foo->foo()": {
|
||||
"fqn": "Foo->foo()",
|
||||
"extends": [],
|
||||
"isGlobal": false,
|
||||
"isStatic": false,
|
||||
|
@ -56,6 +61,7 @@
|
|||
},
|
||||
"type__class": "phpDocumentor\\Reflection\\Types\\Mixed",
|
||||
"type": {},
|
||||
"declarationLine": "public function foo () {",
|
||||
"documentation": null
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue