| 1 | <?php |
||
| 22 | abstract class FieldComponent |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | public static function register($aName, $aConnector) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Constructor. |
||
| 41 | * |
||
| 42 | * @deprecated since version 1.4, will be removed in 2.0. Implement register() instead |
||
| 43 | */ |
||
| 44 | protected function __construct() |
||
| 47 | } |
||
| 48 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.