Update parameter name

Fixes PHPCS
This commit is contained in:
Anton Ukhanev 2021-08-30 08:10:43 +02:00
parent 3a72a73ae3
commit df185157bd
12 changed files with 77 additions and 77 deletions

View file

@ -35,10 +35,10 @@ class CompatModule implements ModuleInterface {
/**
* Run the compatibility module.
*
* @param ContainerInterface|null $container The Container.
* @param ContainerInterface|null $c The Container.
*/
public function run( ContainerInterface $container ): void {
$this->initialize_ppec_compat_layer( $container );
public function run( ContainerInterface $c ): void {
$this->initialize_ppec_compat_layer( $c );
}
/**