This check compares the return type specified in the @return annotation of a function
or method doc comment with the types returned by the function and raises an issue if they
mismatch.
Loading history...
37
* the member object
38
*/
39
public static function authenticate($RAW_data, Form $form = null)
40
{
41
return parent::authenticate($RAW_data, $form);
42
}
43
44
/**
45
* @return string
46
*/
47
public static function get_default_authenticator()
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.