Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Severity Level: Warning
Description
Invoking non-constant members can cause potential bugs. Please double check the syntax to make sure that invoked members are constants.
How
Provide the requested members for a given type or class.
Example
Wrong
$MyString = 'abc'
$MyString.('len'+'gth')
Correct
$MyString = 'abc'
$MyString.('length')