Bosnadev\Repositories\Console\Commands\MakeRepositoryCommand::handle PHP Метод

handle() публичный Метод

Execute the console command.
public handle ( ) : mixed
Результат mixed
    public function handle()
    {
        // Get the arguments.
        $arguments = $this->argument();
        // Get the options.
        $options = $this->option();
        // Write repository.
        $this->writeRepository($arguments, $options);
        // Dump autoload.
        $this->composer->dumpAutoloads();
    }