CompletionTest fixed
parent
fd9d326c7a
commit
8d4fe1ef9f
|
@ -827,12 +827,23 @@ class CompletionTest extends TestCase
|
||||||
'\TestClass', // Type of the property
|
'\TestClass', // Type of the property
|
||||||
'Reprehenderit magna velit mollit ipsum do.'
|
'Reprehenderit magna velit mollit ipsum do.'
|
||||||
),
|
),
|
||||||
|
new CompletionItem(
|
||||||
|
'protectedProperty',
|
||||||
|
CompletionItemKind::PROPERTY,
|
||||||
|
'\TestClass', // Type of the property
|
||||||
|
'Reprehenderit magna velit mollit ipsum do.'
|
||||||
|
),
|
||||||
new CompletionItem(
|
new CompletionItem(
|
||||||
'testMethod',
|
'testMethod',
|
||||||
CompletionItemKind::METHOD,
|
CompletionItemKind::METHOD,
|
||||||
'\TestClass', // Return type of the method
|
'\TestClass', // Return type of the method
|
||||||
'Non culpa nostrud mollit esse sunt laboris in irure ullamco cupidatat amet.'
|
'Non culpa nostrud mollit esse sunt laboris in irure ullamco cupidatat amet.'
|
||||||
),
|
),
|
||||||
|
new CompletionItem(
|
||||||
|
'protectedTestMethod',
|
||||||
|
CompletionItemKind::METHOD,
|
||||||
|
'mixed' // Return type of the method
|
||||||
|
),
|
||||||
new CompletionItem(
|
new CompletionItem(
|
||||||
'foo',
|
'foo',
|
||||||
CompletionItemKind::PROPERTY,
|
CompletionItemKind::PROPERTY,
|
||||||
|
|
Loading…
Reference in New Issue