for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bmatovu\MultiAuth;
use Illuminate\Support\ServiceProvider;
class MultiAuthServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*/
public function boot()
if (! $this->app->runningInConsole()) {
return;
}
$this->commands([
Console\InstallCommand::class,
]);
* Get the services provided by the provider.
*
* @return array
public function provides()
return [Console\InstallCommand::class];