You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
Brackets static members of a class are not shown in hints while trying to access with class name until we type
Steps:
Create new php file and copy below content
<?php
class MyClass{
public static $staticValue = 'static';
const constantValue = 'const';
public $publicValue = 'public';
public static function staticMethod(){}
public function publicFunction(){}
}
$myclass = new MyClass();
MyClass
?>
Title:
Brackets static members of a class are not shown in hints while trying to access with class name until we type
Steps:
Result:
No hints shown
Expected :
constantValue |MyClass|Untitled-1
staticMethod() |MyClass|Untitled-1
staticValue |MyClass|Untitled-1
The text was updated successfully, but these errors were encountered: