for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Minepic\Providers;
use Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider;
use Illuminate\Support\ServiceProvider;
/**
* Class AppServiceProvider.
*/
class AppServiceProvider extends ServiceProvider
{
* Bootstrap any application services.
public function boot(): void
if (env('APP_FORCE_HTTPS')) {
$this->app['request']->server->set('HTTPS', true);
}
if ($this->app->environment() === 'local') {
$this->app->register(IdeHelperServiceProvider::class);
* Register any application services.
public function register(): void