Closed
Description
Rule
The use of static
methods is discouraged.
Reason
Source: Magento Technical Guidelines.
Plugins cannot be used with static methods, because static methods cannot be intercepted.
As a result, It hurts extensibility.
Implementation
- Subscribe to the
T_STATIC
token. - If
T_FUNCTION
is found right to it raise a warning.