cakephp / app

CakePHP application template
366 stars 390 forks source link

Ignore return type hints in `src/Command` #975

Closed cleptric closed 9 months ago

cleptric commented 9 months ago

PHPCS will complain about missing return-type hints when you bake your first command.

Method \App\Command\AppCommand::execute() does not have native return type hint for its return value but it should be possible to add it based on @return
    |       |     annotation "int|null|void".

PHPCBF then adds : int|null|null 🤔

cleptric commented 9 months ago

Moved to https://github.com/cakephp/bake/pull/950