codeigniter4/CodeIgniter4

Dev: replace type `mixed` with more specific types

Fechada

#6.310 aberto em 29 de jul. de 2022

 (11 comentários) (0 reação) (0 responsável)PHP (1.707 forks)batch import
devgood first issuehelp wanted

Métricas do repositório

Stars
 (4.492 estrelas)
Métricas de merge de PR
 (Mesclagem média 4d 15h) (68 fundiu PRs em 30d)

Description

Type mixed means object|resource|array|string|int|float|bool|null. https://www.php.net/manual/en/language.types.declarations.php#language.types.declarations.mixed

The current code base has a lot of type mixed in PHPDocs, But I think all of them are not correct.

And mixed prevents PHPStan level from increasing.

PHPStan’s rule level 6 isn’t satisfied with implicit mixed https://phpstan.org/writing-php-code/phpdoc-types#mixed

We need to replace type mixed with more specific types.

Guia do colaborador