Skip to content

v1.4.0

Compare
Choose a tag to compare
@paulbalandan paulbalandan released this 12 Oct 02:01
· 27 commits to 1.x since this release
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');