for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* App Service Provider.
*
* @package App\Providers
* @author Taylor Otwell <[email protected]>
* @copyright 2018-2020 Nick Menke
* @link https://github.com/nlmenke/vertebrae
*/
declare(strict_types=1);
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
* The Application service provider.
* This service provider is responsible for bootstrapping and registering the
* application's core services.
* @since 0.0.0-framework introduced
class AppServiceProvider extends ServiceProvider
{
* Bootstrap any application services.
* @return void
public function boot(): void
}
* Register any application services.
public function register(): void