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
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
?>
Issue by nayankankariya
Friday May 03, 2019 at 09:31 GMT
Originally opened as adobe/brackets#14757
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: