for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ngtfkx\Laradeck\AddressGenerator;
use Illuminate\Support\ServiceProvider;
use Ngtfkx\Laradeck\AddressGenerator\Commands\GetStat;
use Ngtfkx\Laradeck\AddressGenerator\Commands\ParseCityAddressRu;
class LaradeckAddressGeneratorServiceProvider extends ServiceProvider
{
/**
* Perform post-registration booting of services.
*
* @return void
*/
public function boot()
if ($this->app->runningInConsole()) {
$this->commands([
ParseCityAddressRu::class,
GetStat::class,
]);
}
* Register any package services.
public function register()
//