Closed
Description
After running composer up
we received an updated version of phpcs-variable-analysis
from v2.11.4 to v2.11.5 (no other PHP_CodeSniffer-related updates). Since then we're receiving warnings in custom services in our Drupal application:
FILE: modules/custom/some_module/src/Controller/ResultResponseController.php
--------------------------------------------------------------------------------------------------------
FOUND 0 ERRORS AND 22 WARNINGS AFFECTING 22 LINES
--------------------------------------------------------------------------------------------------------
343 | WARNING | Unused static variable $container.
345 | WARNING | Redeclaration of function parameter $container as static variable.
346 | WARNING | Redeclaration of static variable $container as static variable.
347 | WARNING | Redeclaration of static variable $container as static variable.
...etc
These warnings are about this code inside a PHP class:
public static function create(ContainerInterface $container): ResultResponseController {
return new static(
$container->get('entity_type.manager'),
$container->get('form_builder'),
$container->get('messenger'),
$container->get('request_stack'),
// ...etc
);
}
We can work around the errors by explicitly naming the class we want to return (i.e. return new ResultResponseController(
) but this will be inaccurate for some locations where this static ::create
method exists in an abstract base class.
Could this be caused by the recent change to static declaration checks (#267)?
Metadata
Metadata
Assignees
Labels
No labels