Fix absolute paths and escaped slashes in validation expected output
parent
addc862404
commit
1bb710f852
|
@ -21,10 +21,13 @@ use RecursiveIteratorIterator;
|
|||
use Sabre\Event\Loop;
|
||||
use Microsoft\PhpParser as Tolerant;
|
||||
|
||||
$frameworksDir = realpath(__DIR__ . '/../../validation/frameworks');
|
||||
|
||||
class ValidationTest extends TestCase
|
||||
{
|
||||
public function frameworkErrorProvider() {
|
||||
$frameworks = glob(__DIR__ . "/../../validation/frameworks/*", GLOB_ONLYDIR);
|
||||
global $frameworksDir;
|
||||
$frameworks = glob($frameworksDir . '/*', GLOB_ONLYDIR);
|
||||
|
||||
$testProviderArray = array();
|
||||
foreach ($frameworks as $frameworkDir) {
|
||||
|
@ -33,7 +36,7 @@ class ValidationTest extends TestCase
|
|||
continue;
|
||||
}
|
||||
|
||||
$iterator = new RecursiveDirectoryIterator(__DIR__ . "/../../validation/frameworks/" . $frameworkName);
|
||||
$iterator = new RecursiveDirectoryIterator($frameworkDir);
|
||||
$skipped = json_decode(file_get_contents(__DIR__ . '/skipped.json'));
|
||||
|
||||
foreach (new RecursiveIteratorIterator($iterator) as $file) {
|
||||
|
@ -44,9 +47,11 @@ class ValidationTest extends TestCase
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (count($testProviderArray) === 0) {
|
||||
throw new Exception("ERROR: Validation testsuite frameworks not found - run `git submodule update --init --recursive` to download.");
|
||||
}
|
||||
|
||||
return $testProviderArray;
|
||||
}
|
||||
|
||||
|
@ -64,7 +69,7 @@ class ValidationTest extends TestCase
|
|||
|
||||
$outputFile = getExpectedValuesFile($testCaseFile);
|
||||
if (!file_exists($outputFile)) {
|
||||
file_put_contents(json_encode($actualValues, JSON_PRETTY_PRINT));
|
||||
file_put_contents(json_encode($actualValues, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES));
|
||||
}
|
||||
|
||||
$expectedValues = (array)json_decode(file_get_contents($outputFile));
|
||||
|
@ -80,7 +85,7 @@ class ValidationTest extends TestCase
|
|||
} catch (\Throwable $e) {
|
||||
$outputFile = getExpectedValuesFile($testCaseFile);
|
||||
if ($frameworkName === '_cases') {
|
||||
file_put_contents($outputFile, json_encode($actualValues, JSON_PRETTY_PRINT));
|
||||
file_put_contents($outputFile, json_encode($actualValues, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES));
|
||||
}
|
||||
|
||||
throw $e;
|
||||
|
@ -88,6 +93,8 @@ class ValidationTest extends TestCase
|
|||
}
|
||||
|
||||
private function getActualTestValues($filename, $fileContents): array {
|
||||
global $frameworksDir;
|
||||
|
||||
$index = new Index();
|
||||
$parser = new Tolerant\Parser();
|
||||
$docBlockFactory = DocBlockFactory::createInstance();
|
||||
|
@ -106,6 +113,24 @@ class ValidationTest extends TestCase
|
|||
'definitions' => json_decode(json_encode($actualDefs))
|
||||
);
|
||||
|
||||
// Turn references into relative paths
|
||||
foreach ($refsAndDefs['references'] as $key => $list) {
|
||||
$fixedPathRefs = array_map(function($ref) {
|
||||
global $frameworksDir;
|
||||
return str_replace($frameworksDir, '.', $ref);
|
||||
}, $list);
|
||||
|
||||
$refsAndDefs['references']->$key = $fixedPathRefs;
|
||||
}
|
||||
|
||||
// Turn def locations into relative paths
|
||||
foreach ($refsAndDefs['definitions'] as $key => $def) {
|
||||
if ($def !== null && $def->symbolInformation !== null &&
|
||||
$def->symbolInformation->location !== null && $def->symbolInformation->location->uri !== null) {
|
||||
$def->symbolInformation->location->uri = str_replace($frameworksDir, '.', $def->symbolInformation->location->uri);
|
||||
}
|
||||
}
|
||||
|
||||
return $refsAndDefs;
|
||||
}
|
||||
|
||||
|
@ -151,7 +176,7 @@ class ValidationTest extends TestCase
|
|||
'pathToUri', 'uriToPath' // group function use declarations are broken in old definition resolver
|
||||
];
|
||||
|
||||
foreach ($references as $key=>$value) {
|
||||
foreach ($references as $key => $value) {
|
||||
foreach ($skipped as $s) {
|
||||
if (strpos($key, $s) !== false) {
|
||||
unset($references[$key]);
|
||||
|
@ -163,4 +188,4 @@ class ValidationTest extends TestCase
|
|||
|
||||
function getExpectedValuesFile($testCaseFile): string {
|
||||
return $testCaseFile . '.expected.json';
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"references": {
|
||||
"Fixtures\\Prophecy\\EmptyClass": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/WithReturnTypehints.php"
|
||||
"./_cases/WithReturnTypehints.php"
|
||||
],
|
||||
"self": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/WithReturnTypehints.php"
|
||||
"./_cases/WithReturnTypehints.php"
|
||||
],
|
||||
"parent": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/WithReturnTypehints.php"
|
||||
"./_cases/WithReturnTypehints.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -20,7 +20,7 @@
|
|||
"name": "Fixtures\\Prophecy",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/WithReturnTypehints.php"
|
||||
"uri": "./_cases/WithReturnTypehints.php"
|
||||
},
|
||||
"containerName": "Fixtures"
|
||||
},
|
||||
|
@ -39,7 +39,7 @@
|
|||
"name": "WithReturnTypehints",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/WithReturnTypehints.php"
|
||||
"uri": "./_cases/WithReturnTypehints.php"
|
||||
},
|
||||
"containerName": "Fixtures\\Prophecy"
|
||||
},
|
||||
|
@ -56,7 +56,7 @@
|
|||
"name": "getSelf",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/WithReturnTypehints.php"
|
||||
"uri": "./_cases/WithReturnTypehints.php"
|
||||
},
|
||||
"containerName": "Fixtures\\Prophecy\\WithReturnTypehints"
|
||||
},
|
||||
|
@ -73,7 +73,7 @@
|
|||
"name": "getName",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/WithReturnTypehints.php"
|
||||
"uri": "./_cases/WithReturnTypehints.php"
|
||||
},
|
||||
"containerName": "Fixtures\\Prophecy\\WithReturnTypehints"
|
||||
},
|
||||
|
@ -90,7 +90,7 @@
|
|||
"name": "getParent",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/WithReturnTypehints.php"
|
||||
"uri": "./_cases/WithReturnTypehints.php"
|
||||
},
|
||||
"containerName": "Fixtures\\Prophecy\\WithReturnTypehints"
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/anonymousClassMembersShouldNotBeSymbols.php"
|
||||
"uri": "./_cases/anonymousClassMembersShouldNotBeSymbols.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/arrayValueShouldBeBoolean.php"
|
||||
"uri": "./_cases/arrayValueShouldBeBoolean.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -27,7 +27,7 @@
|
|||
"name": "foo",
|
||||
"kind": 7,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/arrayValueShouldBeBoolean.php"
|
||||
"uri": "./_cases/arrayValueShouldBeBoolean.php"
|
||||
},
|
||||
"containerName": "A"
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\A": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/caseStatement1.php"
|
||||
"./_cases/caseStatement1.php"
|
||||
],
|
||||
"A": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/caseStatement1.php"
|
||||
"./_cases/caseStatement1.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/caseStatement1.php"
|
||||
"uri": "./_cases/caseStatement1.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"TestNamespace\\A": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/classDefinition1.php"
|
||||
"./_cases/classDefinition1.php"
|
||||
],
|
||||
"TestNamespace\\A->a": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/classDefinition1.php"
|
||||
"./_cases/classDefinition1.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "TestNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/classDefinition1.php"
|
||||
"uri": "./_cases/classDefinition1.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/classDefinition1.php"
|
||||
"uri": "./_cases/classDefinition1.php"
|
||||
},
|
||||
"containerName": "TestNamespace"
|
||||
},
|
||||
|
@ -51,7 +51,7 @@
|
|||
"name": "a",
|
||||
"kind": 7,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/classDefinition1.php"
|
||||
"uri": "./_cases/classDefinition1.php"
|
||||
},
|
||||
"containerName": "TestNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"SomeNamespace\\Goo": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/classProperty1.php"
|
||||
"./_cases/classProperty1.php"
|
||||
],
|
||||
"SomeNamespace": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/classProperty1.php"
|
||||
"./_cases/classProperty1.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "TestNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/classProperty1.php"
|
||||
"uri": "./_cases/classProperty1.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "TestClass",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/classProperty1.php"
|
||||
"uri": "./_cases/classProperty1.php"
|
||||
},
|
||||
"containerName": "TestNamespace"
|
||||
},
|
||||
|
@ -51,7 +51,7 @@
|
|||
"name": "testProperty",
|
||||
"kind": 7,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/classProperty1.php"
|
||||
"uri": "./_cases/classProperty1.php"
|
||||
},
|
||||
"containerName": "TestNamespace\\TestClass"
|
||||
},
|
||||
|
@ -68,7 +68,7 @@
|
|||
"name": "testMethod",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/classProperty1.php"
|
||||
"uri": "./_cases/classProperty1.php"
|
||||
},
|
||||
"containerName": "TestNamespace\\TestClass"
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\BYE": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants.php"
|
||||
"./_cases/constants.php"
|
||||
],
|
||||
"BYE": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants.php"
|
||||
"./_cases/constants.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants.php"
|
||||
"uri": "./_cases/constants.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants.php"
|
||||
"uri": "./_cases/constants.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -51,7 +51,7 @@
|
|||
"name": "suite",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants.php"
|
||||
"uri": "./_cases/constants.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\BYE": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants2.php"
|
||||
"./_cases/constants2.php"
|
||||
],
|
||||
"BYE": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants2.php"
|
||||
"./_cases/constants2.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants2.php"
|
||||
"uri": "./_cases/constants2.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants2.php"
|
||||
"uri": "./_cases/constants2.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -51,7 +51,7 @@
|
|||
"name": "suite",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants2.php"
|
||||
"uri": "./_cases/constants2.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\T_NEW": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants3.php"
|
||||
"./_cases/constants3.php"
|
||||
],
|
||||
"T_NEW": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants3.php"
|
||||
"./_cases/constants3.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants3.php"
|
||||
"uri": "./_cases/constants3.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants3.php"
|
||||
"uri": "./_cases/constants3.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -51,7 +51,7 @@
|
|||
"name": "suite",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants3.php"
|
||||
"uri": "./_cases/constants3.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\HI": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants4.php"
|
||||
"./_cases/constants4.php"
|
||||
],
|
||||
"HI": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants4.php"
|
||||
"./_cases/constants4.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants4.php"
|
||||
"uri": "./_cases/constants4.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants4.php"
|
||||
"uri": "./_cases/constants4.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -51,7 +51,7 @@
|
|||
"name": "suite",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants4.php"
|
||||
"uri": "./_cases/constants4.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\PHP_INT_MAX": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants5.php"
|
||||
"./_cases/constants5.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -14,7 +14,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants5.php"
|
||||
"uri": "./_cases/constants5.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -31,7 +31,7 @@
|
|||
"name": "Mbstring",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants5.php"
|
||||
"uri": "./_cases/constants5.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -48,7 +48,7 @@
|
|||
"name": "MB_CASE_FOLD",
|
||||
"kind": 14,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constants5.php"
|
||||
"uri": "./_cases/constants5.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\Mbstring"
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"references": {
|
||||
"MY_CONSTANT": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constantsInFunctionParamDefault.php"
|
||||
"./_cases/constantsInFunctionParamDefault.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -14,7 +14,7 @@
|
|||
"name": "A",
|
||||
"kind": 11,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constantsInFunctionParamDefault.php"
|
||||
"uri": "./_cases/constantsInFunctionParamDefault.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -31,7 +31,7 @@
|
|||
"name": "b",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/constantsInFunctionParamDefault.php"
|
||||
"uri": "./_cases/constantsInFunctionParamDefault.php"
|
||||
},
|
||||
"containerName": "A"
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/docBlocksOnNamespaceDefinition.php"
|
||||
"uri": "./_cases/docBlocksOnNamespaceDefinition.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/exceptions1.php"
|
||||
"uri": "./_cases/exceptions1.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"A": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/functionUse.php"
|
||||
"./_cases/functionUse.php"
|
||||
],
|
||||
"A->b()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/functionUse.php"
|
||||
"./_cases/functionUse.php"
|
||||
]
|
||||
},
|
||||
"definitions": []
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"LanguageServer": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/functionUse2.php"
|
||||
"./_cases/functionUse2.php"
|
||||
],
|
||||
"LanguageServer\\timeout()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/functionUse2.php"
|
||||
"./_cases/functionUse2.php"
|
||||
]
|
||||
},
|
||||
"definitions": []
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\A": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/ifStatement1.php"
|
||||
"./_cases/ifStatement1.php"
|
||||
],
|
||||
"A": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/ifStatement1.php"
|
||||
"./_cases/ifStatement1.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/ifStatement1.php"
|
||||
"uri": "./_cases/ifStatement1.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "A",
|
||||
"kind": 11,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/interfaceProperty.php"
|
||||
"uri": "./_cases/interfaceProperty.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "B",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/magicConstantsShouldBeGlobal.php"
|
||||
"uri": "./_cases/magicConstantsShouldBeGlobal.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/magicConsts.php"
|
||||
"uri": "./_cases/magicConsts.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -27,7 +27,7 @@
|
|||
"name": "deprecationsTriggered",
|
||||
"kind": 7,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/magicConsts.php"
|
||||
"uri": "./_cases/magicConsts.php"
|
||||
},
|
||||
"containerName": "A"
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\a": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess1.php"
|
||||
"./_cases/memberAccess1.php"
|
||||
],
|
||||
"MyNamespace\\a->a()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess1.php"
|
||||
"./_cases/memberAccess1.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess1.php"
|
||||
"uri": "./_cases/memberAccess1.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess1.php"
|
||||
"uri": "./_cases/memberAccess1.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -51,7 +51,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess1.php"
|
||||
"uri": "./_cases/memberAccess1.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\a": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess2.php"
|
||||
"./_cases/memberAccess2.php"
|
||||
],
|
||||
"MyNamespace\\a->a()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess2.php"
|
||||
"./_cases/memberAccess2.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess2.php"
|
||||
"uri": "./_cases/memberAccess2.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess2.php"
|
||||
"uri": "./_cases/memberAccess2.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -51,7 +51,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess2.php"
|
||||
"uri": "./_cases/memberAccess2.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\ClassLoader": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess3.php"
|
||||
"./_cases/memberAccess3.php"
|
||||
],
|
||||
"Closure::bind()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess3.php"
|
||||
"./_cases/memberAccess3.php"
|
||||
],
|
||||
"Closure": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess3.php"
|
||||
"./_cases/memberAccess3.php"
|
||||
],
|
||||
"MyNamespace\\ClassLoader->prefixesPsr0": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess3.php"
|
||||
"./_cases/memberAccess3.php"
|
||||
],
|
||||
"MyNamespace\\ComposerStaticInitIncludePath": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess3.php"
|
||||
"./_cases/memberAccess3.php"
|
||||
],
|
||||
"MyNamespace\\ComposerStaticInitIncludePath::$prefixesPsr0": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess3.php"
|
||||
"./_cases/memberAccess3.php"
|
||||
],
|
||||
"MyNamespace\\ClassLoader::class": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess3.php"
|
||||
"./_cases/memberAccess3.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -32,7 +32,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess3.php"
|
||||
"uri": "./_cases/memberAccess3.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -49,7 +49,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess3.php"
|
||||
"uri": "./_cases/memberAccess3.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -66,7 +66,7 @@
|
|||
"name": "getInitializer",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess3.php"
|
||||
"uri": "./_cases/memberAccess3.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\Request::create()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess4.php"
|
||||
"./_cases/memberAccess4.php"
|
||||
],
|
||||
"MyNamespace\\Request": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess4.php"
|
||||
"./_cases/memberAccess4.php"
|
||||
],
|
||||
"MyNamespace\\Url->toString()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess4.php"
|
||||
"./_cases/memberAccess4.php"
|
||||
],
|
||||
"MyNamespace\\Url": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess4.php"
|
||||
"./_cases/memberAccess4.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -23,7 +23,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess4.php"
|
||||
"uri": "./_cases/memberAccess4.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess4.php"
|
||||
"uri": "./_cases/memberAccess4.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -57,7 +57,7 @@
|
|||
"name": "testRequest",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess4.php"
|
||||
"uri": "./_cases/memberAccess4.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess5.php"
|
||||
"uri": "./_cases/memberAccess5.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -27,7 +27,7 @@
|
|||
"name": "ParseErrorsTest",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess5.php"
|
||||
"uri": "./_cases/memberAccess5.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -44,7 +44,7 @@
|
|||
"name": "setUp",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberAccess5.php"
|
||||
"uri": "./_cases/memberAccess5.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\ParseErrorsTest"
|
||||
},
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\AccountInterface": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberCall1.php"
|
||||
"./_cases/memberCall1.php"
|
||||
],
|
||||
"MyNamespace\\A": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberCall1.php"
|
||||
"./_cases/memberCall1.php"
|
||||
],
|
||||
"MyNamespace\\AccountInterface->getAccount()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberCall1.php"
|
||||
"./_cases/memberCall1.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -20,7 +20,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberCall1.php"
|
||||
"uri": "./_cases/memberCall1.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -37,7 +37,7 @@
|
|||
"name": "ParseErrorsTest",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberCall1.php"
|
||||
"uri": "./_cases/memberCall1.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -54,7 +54,7 @@
|
|||
"name": "setAccount",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/memberCall1.php"
|
||||
"uri": "./_cases/memberCall1.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\ParseErrorsTest"
|
||||
},
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace2\\MyNamespace1\\B": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/multipleNamespaces.php"
|
||||
"./_cases/multipleNamespaces.php"
|
||||
],
|
||||
"MyNamespace2\\MyNamespace1": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/multipleNamespaces.php"
|
||||
"./_cases/multipleNamespaces.php"
|
||||
],
|
||||
"MyNamespace2": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/multipleNamespaces.php"
|
||||
"./_cases/multipleNamespaces.php"
|
||||
],
|
||||
"MyNamespace2\\A->b()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/multipleNamespaces.php"
|
||||
"./_cases/multipleNamespaces.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -23,7 +23,7 @@
|
|||
"name": "MyNamespace1",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/multipleNamespaces.php"
|
||||
"uri": "./_cases/multipleNamespaces.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "B",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/multipleNamespaces.php"
|
||||
"uri": "./_cases/multipleNamespaces.php"
|
||||
},
|
||||
"containerName": "MyNamespace1"
|
||||
},
|
||||
|
@ -57,7 +57,7 @@
|
|||
"name": "b",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/multipleNamespaces.php"
|
||||
"uri": "./_cases/multipleNamespaces.php"
|
||||
},
|
||||
"containerName": "MyNamespace1\\B"
|
||||
},
|
||||
|
@ -74,7 +74,7 @@
|
|||
"name": "MyNamespace2",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/multipleNamespaces.php"
|
||||
"uri": "./_cases/multipleNamespaces.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -93,7 +93,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/multipleNamespaces.php"
|
||||
"uri": "./_cases/multipleNamespaces.php"
|
||||
},
|
||||
"containerName": "MyNamespace2"
|
||||
},
|
||||
|
@ -110,7 +110,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/multipleNamespaces.php"
|
||||
"uri": "./_cases/multipleNamespaces.php"
|
||||
},
|
||||
"containerName": "MyNamespace2\\A"
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "Foo",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/multiplePreceedingComments.php"
|
||||
"uri": "./_cases/multiplePreceedingComments.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -27,7 +27,7 @@
|
|||
"name": "fn",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/multiplePreceedingComments.php"
|
||||
"uri": "./_cases/multiplePreceedingComments.php"
|
||||
},
|
||||
"containerName": "Foo"
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/nameToken.php"
|
||||
"uri": "./_cases/nameToken.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -27,7 +27,7 @@
|
|||
"name": "b",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/nameToken.php"
|
||||
"uri": "./_cases/nameToken.php"
|
||||
},
|
||||
"containerName": "A"
|
||||
},
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
{
|
||||
"references": {
|
||||
"NS1\\C": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces2.php"
|
||||
"./_cases/namespaces2.php"
|
||||
],
|
||||
"NS1": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces2.php"
|
||||
"./_cases/namespaces2.php"
|
||||
],
|
||||
"NS1\\I": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces2.php"
|
||||
"./_cases/namespaces2.php"
|
||||
],
|
||||
"NS1\\T": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces2.php"
|
||||
"./_cases/namespaces2.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -23,7 +23,7 @@
|
|||
"name": "MyNamespace1",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces2.php"
|
||||
"uri": "./_cases/namespaces2.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"a\\b": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces4.php"
|
||||
"./_cases/namespaces4.php"
|
||||
],
|
||||
"a": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces4.php"
|
||||
"./_cases/namespaces4.php"
|
||||
]
|
||||
},
|
||||
"definitions": []
|
||||
|
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"references": {
|
||||
"LanguageServer\\Protocol": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces5.php"
|
||||
"./_cases/namespaces5.php"
|
||||
],
|
||||
"LanguageServer": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces5.php"
|
||||
"./_cases/namespaces5.php"
|
||||
],
|
||||
"LanguageServer\\Protocol\\TextDocumentIdentifier": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces5.php"
|
||||
"./_cases/namespaces5.php"
|
||||
],
|
||||
"LanguageServer\\Protocol\\Position": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces5.php"
|
||||
"./_cases/namespaces5.php"
|
||||
],
|
||||
"LanguageServer\\Protocol\\ReferenceContext": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces5.php"
|
||||
"./_cases/namespaces5.php"
|
||||
],
|
||||
"LanguageServer\\Protocol\\Location": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces5.php"
|
||||
"./_cases/namespaces5.php"
|
||||
],
|
||||
"LanguageServer\\Protocol\\Range": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces5.php"
|
||||
"./_cases/namespaces5.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -32,7 +32,7 @@
|
|||
"name": "B",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces5.php"
|
||||
"uri": "./_cases/namespaces5.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "A\\B",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces6.php"
|
||||
"uri": "./_cases/namespaces6.php"
|
||||
},
|
||||
"containerName": "A"
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"references": {
|
||||
"LanguageServer": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces8.php"
|
||||
"./_cases/namespaces8.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -14,7 +14,7 @@
|
|||
"name": "LanguageServer\\Tests\\Utils",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/namespaces8.php"
|
||||
"uri": "./_cases/namespaces8.php"
|
||||
},
|
||||
"containerName": "LanguageServer\\Tests"
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\A->inline_diff_renderer": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/objectCreation.php"
|
||||
"./_cases/objectCreation.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -14,7 +14,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/objectCreation.php"
|
||||
"uri": "./_cases/objectCreation.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -31,7 +31,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/objectCreation.php"
|
||||
"uri": "./_cases/objectCreation.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -48,7 +48,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/objectCreation.php"
|
||||
"uri": "./_cases/objectCreation.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\B->hi()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/objectCreation2.php"
|
||||
"./_cases/objectCreation2.php"
|
||||
],
|
||||
"MyNamespace\\B": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/objectCreation2.php"
|
||||
"./_cases/objectCreation2.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/objectCreation2.php"
|
||||
"uri": "./_cases/objectCreation2.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "B",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/objectCreation2.php"
|
||||
"uri": "./_cases/objectCreation2.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -51,7 +51,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/objectCreation2.php"
|
||||
"uri": "./_cases/objectCreation2.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -68,7 +68,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/objectCreation2.php"
|
||||
"uri": "./_cases/objectCreation2.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"references": {
|
||||
"A->args": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/objectCreation3.php"
|
||||
"./_cases/objectCreation3.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -14,7 +14,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/objectCreation3.php"
|
||||
"uri": "./_cases/objectCreation3.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -31,7 +31,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/objectCreation3.php"
|
||||
"uri": "./_cases/objectCreation3.php"
|
||||
},
|
||||
"containerName": "A"
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\Hi": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/param1.php"
|
||||
"./_cases/param1.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -14,7 +14,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/param1.php"
|
||||
"uri": "./_cases/param1.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -31,7 +31,7 @@
|
|||
"name": "init",
|
||||
"kind": 12,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/param1.php"
|
||||
"uri": "./_cases/param1.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\B": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent1.php"
|
||||
"./_cases/parent1.php"
|
||||
],
|
||||
"parent": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent1.php"
|
||||
"./_cases/parent1.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent1.php"
|
||||
"uri": "./_cases/parent1.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "B",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent1.php"
|
||||
"uri": "./_cases/parent1.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -51,7 +51,7 @@
|
|||
"name": "b",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent1.php"
|
||||
"uri": "./_cases/parent1.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\B"
|
||||
},
|
||||
|
@ -70,7 +70,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent1.php"
|
||||
"uri": "./_cases/parent1.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -87,7 +87,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent1.php"
|
||||
"uri": "./_cases/parent1.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\B": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent3.php"
|
||||
"./_cases/parent3.php"
|
||||
],
|
||||
"MyNamespace\\B->b()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent3.php"
|
||||
"./_cases/parent3.php"
|
||||
],
|
||||
"parent": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent3.php"
|
||||
"./_cases/parent3.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -20,7 +20,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent3.php"
|
||||
"uri": "./_cases/parent3.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -37,7 +37,7 @@
|
|||
"name": "B",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent3.php"
|
||||
"uri": "./_cases/parent3.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -54,7 +54,7 @@
|
|||
"name": "b",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent3.php"
|
||||
"uri": "./_cases/parent3.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\B"
|
||||
},
|
||||
|
@ -73,7 +73,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent3.php"
|
||||
"uri": "./_cases/parent3.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -90,7 +90,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/parent3.php"
|
||||
"uri": "./_cases/parent3.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "MyClass",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/propertyName1.php"
|
||||
"uri": "./_cases/propertyName1.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -27,7 +27,7 @@
|
|||
"name": "mainPropertyName",
|
||||
"kind": 7,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/propertyName1.php"
|
||||
"uri": "./_cases/propertyName1.php"
|
||||
},
|
||||
"containerName": "MyClass"
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "MyClass",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/propertyName2.php"
|
||||
"uri": "./_cases/propertyName2.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -27,7 +27,7 @@
|
|||
"name": "mainPropertyName",
|
||||
"kind": 7,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/propertyName2.php"
|
||||
"uri": "./_cases/propertyName2.php"
|
||||
},
|
||||
"containerName": "MyClass"
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"TestNamespace\\TestClass": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/returnType.php"
|
||||
"./_cases/returnType.php"
|
||||
],
|
||||
"TestNamespace\\TestClass2": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/returnType.php"
|
||||
"./_cases/returnType.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "TestNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/returnType.php"
|
||||
"uri": "./_cases/returnType.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "whatever",
|
||||
"kind": 12,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/returnType.php"
|
||||
"uri": "./_cases/returnType.php"
|
||||
},
|
||||
"containerName": "TestNamespace"
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\A::a()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess.php"
|
||||
"./_cases/scopedPropertyAccess.php"
|
||||
],
|
||||
"MyNamespace\\A": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess.php"
|
||||
"./_cases/scopedPropertyAccess.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess.php"
|
||||
"uri": "./_cases/scopedPropertyAccess.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess.php"
|
||||
"uri": "./_cases/scopedPropertyAccess.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -51,7 +51,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess.php"
|
||||
"uri": "./_cases/scopedPropertyAccess.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\A": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess2.php"
|
||||
"./_cases/scopedPropertyAccess2.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -14,7 +14,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess2.php"
|
||||
"uri": "./_cases/scopedPropertyAccess2.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"A": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess3.php"
|
||||
"./_cases/scopedPropertyAccess3.php"
|
||||
],
|
||||
"A::$a": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess3.php"
|
||||
"./_cases/scopedPropertyAccess3.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess3.php"
|
||||
"uri": "./_cases/scopedPropertyAccess3.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "a",
|
||||
"kind": 7,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess3.php"
|
||||
"uri": "./_cases/scopedPropertyAccess3.php"
|
||||
},
|
||||
"containerName": "A"
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"references": {
|
||||
"A": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess4.php"
|
||||
"./_cases/scopedPropertyAccess4.php"
|
||||
]
|
||||
},
|
||||
"definitions": []
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
{
|
||||
"references": {
|
||||
"TestInterface": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess5.php"
|
||||
"./_cases/scopedPropertyAccess5.php"
|
||||
],
|
||||
"TestClass": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess5.php"
|
||||
"./_cases/scopedPropertyAccess5.php"
|
||||
],
|
||||
"TestClass::$testProperty": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess5.php"
|
||||
"./_cases/scopedPropertyAccess5.php"
|
||||
],
|
||||
"TestClass::$staticTestProperty": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess5.php"
|
||||
"./_cases/scopedPropertyAccess5.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -23,7 +23,7 @@
|
|||
"name": "TestClass",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess5.php"
|
||||
"uri": "./_cases/scopedPropertyAccess5.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "testProperty",
|
||||
"kind": 7,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/scopedPropertyAccess5.php"
|
||||
"uri": "./_cases/scopedPropertyAccess5.php"
|
||||
},
|
||||
"containerName": "TestClass"
|
||||
},
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\B": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self1.php"
|
||||
"./_cases/self1.php"
|
||||
],
|
||||
"MyNamespace\\A::b()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self1.php"
|
||||
"./_cases/self1.php"
|
||||
],
|
||||
"self": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self1.php"
|
||||
"./_cases/self1.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -20,7 +20,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self1.php"
|
||||
"uri": "./_cases/self1.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -37,7 +37,7 @@
|
|||
"name": "B",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self1.php"
|
||||
"uri": "./_cases/self1.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -54,7 +54,7 @@
|
|||
"name": "b",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self1.php"
|
||||
"uri": "./_cases/self1.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\B"
|
||||
},
|
||||
|
@ -73,7 +73,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self1.php"
|
||||
"uri": "./_cases/self1.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -90,7 +90,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self1.php"
|
||||
"uri": "./_cases/self1.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\B": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self2.php"
|
||||
"./_cases/self2.php"
|
||||
],
|
||||
"MyNamespace\\A::b()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self2.php"
|
||||
"./_cases/self2.php"
|
||||
],
|
||||
"self": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self2.php"
|
||||
"./_cases/self2.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -20,7 +20,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self2.php"
|
||||
"uri": "./_cases/self2.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -37,7 +37,7 @@
|
|||
"name": "B",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self2.php"
|
||||
"uri": "./_cases/self2.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -54,7 +54,7 @@
|
|||
"name": "b",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self2.php"
|
||||
"uri": "./_cases/self2.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\B"
|
||||
},
|
||||
|
@ -73,7 +73,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self2.php"
|
||||
"uri": "./_cases/self2.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -90,7 +90,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self2.php"
|
||||
"uri": "./_cases/self2.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\B": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self3.php"
|
||||
"./_cases/self3.php"
|
||||
],
|
||||
"MyNamespace\\A->b()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self3.php"
|
||||
"./_cases/self3.php"
|
||||
],
|
||||
"self": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self3.php"
|
||||
"./_cases/self3.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -20,7 +20,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self3.php"
|
||||
"uri": "./_cases/self3.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -37,7 +37,7 @@
|
|||
"name": "B",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self3.php"
|
||||
"uri": "./_cases/self3.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -54,7 +54,7 @@
|
|||
"name": "b",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self3.php"
|
||||
"uri": "./_cases/self3.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\B"
|
||||
},
|
||||
|
@ -73,7 +73,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self3.php"
|
||||
"uri": "./_cases/self3.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -90,7 +90,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self3.php"
|
||||
"uri": "./_cases/self3.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
{
|
||||
"references": {
|
||||
"self": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self4.php"
|
||||
"./_cases/self4.php"
|
||||
],
|
||||
"MyNamespace\\A->addTestFile()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self4.php"
|
||||
"./_cases/self4.php"
|
||||
],
|
||||
"MyNamespace\\DS": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self4.php"
|
||||
"./_cases/self4.php"
|
||||
],
|
||||
"DS": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self4.php"
|
||||
"./_cases/self4.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -23,7 +23,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self4.php"
|
||||
"uri": "./_cases/self4.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -40,7 +40,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self4.php"
|
||||
"uri": "./_cases/self4.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -57,7 +57,7 @@
|
|||
"name": "suite",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self4.php"
|
||||
"uri": "./_cases/self4.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\A->assertTrue()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self5.php"
|
||||
"./_cases/self5.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -14,7 +14,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self5.php"
|
||||
"uri": "./_cases/self5.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -31,7 +31,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self5.php"
|
||||
"uri": "./_cases/self5.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -48,7 +48,7 @@
|
|||
"name": "typesProvider",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/self5.php"
|
||||
"uri": "./_cases/self5.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\B": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static1.php"
|
||||
"./_cases/static1.php"
|
||||
],
|
||||
"MyNamespace\\A::b()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static1.php"
|
||||
"./_cases/static1.php"
|
||||
],
|
||||
"static": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static1.php"
|
||||
"./_cases/static1.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -20,7 +20,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static1.php"
|
||||
"uri": "./_cases/static1.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -37,7 +37,7 @@
|
|||
"name": "B",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static1.php"
|
||||
"uri": "./_cases/static1.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -54,7 +54,7 @@
|
|||
"name": "b",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static1.php"
|
||||
"uri": "./_cases/static1.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\B"
|
||||
},
|
||||
|
@ -73,7 +73,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static1.php"
|
||||
"uri": "./_cases/static1.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -90,7 +90,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static1.php"
|
||||
"uri": "./_cases/static1.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\B": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static2.php"
|
||||
"./_cases/static2.php"
|
||||
],
|
||||
"MyNamespace\\A::b()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static2.php"
|
||||
"./_cases/static2.php"
|
||||
],
|
||||
"static": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static2.php"
|
||||
"./_cases/static2.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -20,7 +20,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static2.php"
|
||||
"uri": "./_cases/static2.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -37,7 +37,7 @@
|
|||
"name": "B",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static2.php"
|
||||
"uri": "./_cases/static2.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -54,7 +54,7 @@
|
|||
"name": "b",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static2.php"
|
||||
"uri": "./_cases/static2.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\B"
|
||||
},
|
||||
|
@ -73,7 +73,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static2.php"
|
||||
"uri": "./_cases/static2.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -90,7 +90,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static2.php"
|
||||
"uri": "./_cases/static2.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\B": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static3.php"
|
||||
"./_cases/static3.php"
|
||||
],
|
||||
"MyNamespace\\b()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static3.php"
|
||||
"./_cases/static3.php"
|
||||
],
|
||||
"b()": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static3.php"
|
||||
"./_cases/static3.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -20,7 +20,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static3.php"
|
||||
"uri": "./_cases/static3.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -37,7 +37,7 @@
|
|||
"name": "B",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static3.php"
|
||||
"uri": "./_cases/static3.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -54,7 +54,7 @@
|
|||
"name": "b",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static3.php"
|
||||
"uri": "./_cases/static3.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\B"
|
||||
},
|
||||
|
@ -73,7 +73,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static3.php"
|
||||
"uri": "./_cases/static3.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -90,7 +90,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static3.php"
|
||||
"uri": "./_cases/static3.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"MyNamespace\\B": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static4.php"
|
||||
"./_cases/static4.php"
|
||||
],
|
||||
"static": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static4.php"
|
||||
"./_cases/static4.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "MyNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static4.php"
|
||||
"uri": "./_cases/static4.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -36,7 +36,7 @@
|
|||
"name": "A",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static4.php"
|
||||
"uri": "./_cases/static4.php"
|
||||
},
|
||||
"containerName": "MyNamespace"
|
||||
},
|
||||
|
@ -53,7 +53,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/static4.php"
|
||||
"uri": "./_cases/static4.php"
|
||||
},
|
||||
"containerName": "MyNamespace\\A"
|
||||
},
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"name": "B",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/stringVariable.php"
|
||||
"uri": "./_cases/stringVariable.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -27,7 +27,7 @@
|
|||
"name": "hi",
|
||||
"kind": 7,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/stringVariable.php"
|
||||
"uri": "./_cases/stringVariable.php"
|
||||
},
|
||||
"containerName": "B"
|
||||
},
|
||||
|
@ -44,7 +44,7 @@
|
|||
"name": "a",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/stringVariable.php"
|
||||
"uri": "./_cases/stringVariable.php"
|
||||
},
|
||||
"containerName": "B"
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"references": {
|
||||
"NameOutsideOfNamespace": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/testQualifiedNameOutsideOfNamespace.php"
|
||||
"./_cases/testQualifiedNameOutsideOfNamespace.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -14,7 +14,7 @@
|
|||
"name": "SomeNamespace",
|
||||
"kind": 3,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/testQualifiedNameOutsideOfNamespace.php"
|
||||
"uri": "./_cases/testQualifiedNameOutsideOfNamespace.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"references": {
|
||||
"CURLAUTH_BASIC": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/verifyFqsenOnClassProperty.php"
|
||||
"./_cases/verifyFqsenOnClassProperty.php"
|
||||
],
|
||||
"Foo->bar": [
|
||||
"\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/verifyFqsenOnClassProperty.php"
|
||||
"./_cases/verifyFqsenOnClassProperty.php"
|
||||
]
|
||||
},
|
||||
"definitions": {
|
||||
|
@ -17,7 +17,7 @@
|
|||
"name": "Foo",
|
||||
"kind": 5,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/verifyFqsenOnClassProperty.php"
|
||||
"uri": "./_cases/verifyFqsenOnClassProperty.php"
|
||||
},
|
||||
"containerName": ""
|
||||
},
|
||||
|
@ -34,7 +34,7 @@
|
|||
"name": "bar",
|
||||
"kind": 7,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/verifyFqsenOnClassProperty.php"
|
||||
"uri": "./_cases/verifyFqsenOnClassProperty.php"
|
||||
},
|
||||
"containerName": "Foo"
|
||||
},
|
||||
|
@ -51,7 +51,7 @@
|
|||
"name": "foo",
|
||||
"kind": 6,
|
||||
"location": {
|
||||
"uri": "\/Users\/roblou\/code\/php-language-server\/tests\/Validation\/..\/..\/validation\/frameworks\/_cases\/verifyFqsenOnClassProperty.php"
|
||||
"uri": "./_cases/verifyFqsenOnClassProperty.php"
|
||||
},
|
||||
"containerName": "Foo"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue