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');