codeigniter4/CodeIgniter4

Dev: replace type `mixed` with more specific types

已關閉

#6,310 建立於 2022年7月29日

 (11 則留言) (0 個反應) (0 位負責人)PHP (1,707 個分叉)batch import
devgood first issuehelp wanted

倉庫指標

星標
 (4,492 顆星)
PR 合併指標
 (平均合併 4天 15小時) (30 天內合併 68 個 PR)

描述

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.

貢獻者指南