Skip to content

Releases: CodeIgniter/phpstan-codeigniter

v1.4.2

Choose a tag to compare

@paulbalandan paulbalandan released this 05 Nov 10:43
v1.4.2
d4f77ab

Fixed 🔧

  • Fix phpstan baselined errors
  • Allow superglobal assign and access at root level

v1.4.1

Choose a tag to compare

@paulbalandan paulbalandan released this 21 Oct 07:49
v1.4.1
ff38e66

Fixed 🔧

  • Added CodeIgniter\Config\ to codeigniter.additionalConfigNamespaces parameter
  • Limit rule to package configs and models only

v1.4.0

Choose a tag to compare

@paulbalandan paulbalandan released this 12 Oct 02:01
v1.4.0
542275a

New features 🎉

  • Disallow use of class const fetch on factories functions (i.e., config() and model()) 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

Choose a tag to compare

@paulbalandan paulbalandan released this 18 Sep 09:38
v1.3.0
c19bd2b

New features 🎉

  • Provides precise return types for CodeIgniter\Model's find(), findAll(), and first() methods.
  • Allows dynamic return type transformation of CodeIgniter\Model when asArray() or asObject() is called.

Full Changelog: v1.2.0...v1.3.0

v1.2.0

Choose a tag to compare

@paulbalandan paulbalandan released this 16 Sep 10:04
v1.2.0
62e6d46

New feature 🎉

  • Provides precise return types for fake() helper function.

Full Changelog: v1.1.3...v1.2.0

v1.1.3

Choose a tag to compare

@paulbalandan paulbalandan released this 11 Sep 07:56
v1.1.3
22e177d

Fixes 🔧

  • fix: wrong delete for remote branch

Full Changelog: v1.1.2...v1.1.3

v1.1.2

Choose a tag to compare

@paulbalandan paulbalandan released this 11 Sep 07:49
v1.1.2
6ea276e

Fixes 🔧

  • fix: add downgrade match rector
  • fix: delete remote branch

Full Changelog: v1.1.1...v1.1.2

v1.1.1

Choose a tag to compare

@paulbalandan paulbalandan released this 11 Sep 07:39
v1.1.1
eb2472a

Fixes 🔧

  • fix: add downgrade rule for nullsafe operator

Full Changelog: v1.1.0...v1.1.1

v1.1.0

Choose a tag to compare

@paulbalandan paulbalandan released this 11 Sep 07:12
v1.1.0
bd85f72

What's Changed

  • Bump actions/checkout from 3 to 4 by @dependabot in #4
  • feature: added possibility to downgrade releases

New Contributors

Full Changelog: v1.0.1...v1.1.0

v1.0.1

Choose a tag to compare

@paulbalandan paulbalandan released this 30 Aug 06:37
v1.0.1
de64b5e

Fixes 🔧

  • Add changelog
  • Fix wrong namespace of tests
  • Add missing trailing comma