spatie / laravel-ray

Debug with Ray to fix problems faster in Laravel apps
https://myray.app
MIT License
291 stars 64 forks source link

Avoid making DB connection unless necessary #295

Closed crynobone closed 1 year ago

crynobone commented 1 year ago

Internally, DB::listen() is equivalent to calling app('db')->connection()->listen() which initiate a database connection and cause issue such as nunomaduro/larastan#1588

freekmurze commented 1 year ago

Thanks!