Releases: CodeIgniter/phpstan-codeigniter
Releases · CodeIgniter/phpstan-codeigniter
v1.4.2
Fixed 🔧
- Fix phpstan baselined errors
- Allow superglobal assign and access at root level
v1.4.1
v1.4.0
New features 🎉
- Disallow use of class const fetch on factories functions (i.e.,
config()andmodel()) and instead suggests use the short form call.
use Config\App;
// This call:
config (App::class);
// is suggested to be changed to
config('App');v1.3.0
New features 🎉
- Provides precise return types for
CodeIgniter\Model'sfind(),findAll(), andfirst()methods. - Allows dynamic return type transformation of
CodeIgniter\ModelwhenasArray()orasObject()is called.
Full Changelog: v1.2.0...v1.3.0
v1.2.0
New feature 🎉
- Provides precise return types for
fake()helper function.
Full Changelog: v1.1.3...v1.2.0
v1.1.3
v1.1.2
v1.1.1
v1.1.0
What's Changed
- Bump actions/checkout from 3 to 4 by @dependabot in #4
- feature: added possibility to downgrade releases
New Contributors
- @dependabot made their first contribution in #4
Full Changelog: v1.0.1...v1.1.0
v1.0.1
Fixes 🔧
- Add changelog
- Fix wrong namespace of tests
- Add missing trailing comma