e637ee2a40
AppServiceProvider registered Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider unconditionally. That package lives in composer.json require-dev and is never installed by `composer install --no-dev` (used in docker/Dockerfile), so the class doesn't exist in production, causing a fatal error on every request.
29 lines
403 B
PHP
29 lines
403 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
//
|
|
}
|
|
}
|