Pattern: Invoking empty member
Issue: -
Invoking non-constant members can cause potential bugs. Please double check the syntax to make sure that invoked members are constants.
Provide the requested members for a given type or class.
Example of incorrect code:
$MyString = "abc"
$MyString.('len'+'gth')
Example of correct code:
$MyString = "abc"
$MyString.('length')