Not having a way to use cascading config files is very inconvenient. Some things are just so much more conveniently set in a cascading config file, like for local
Hi guys, just want to post something what can help people migrating from 4.2 to 5.
I had this error: Notice: date_default_timezone_set(): Timezone ID '' is invalid in ..... .... Fatal error: Call to undefined method Illuminate\Foundation\Bootstrap\ConfigureLogging::configureHandler()
it was not because timezone problem, but because I put old configurations from L4.2 into config folder, eg. config/_4.2_config/*.php...
Laravel automatically parsed this and then shows this strange error. So simple solution for me was to remove all unnecessary stuff in config folder.
Cheers.