Файл: gapps/vendor/prettus/l5-repository/src/Prettus/Repository/Generators/Commands/ControllerCommand.php
Строк: 97
<?php
namespace PrettusRepositoryGeneratorsCommands;
use IlluminateConsoleCommand;
use IlluminateSupportCollection;
use PrettusRepositoryGeneratorsControllerGenerator;
use PrettusRepositoryGeneratorsFileAlreadyExistsException;
use SymfonyComponentConsoleInputInputArgument;
use SymfonyComponentConsoleInputInputOption;
class ControllerCommand extends Command
{
/**
* The name of command.
*
* @var string
*/
protected $name = 'make:resource';
/**
* The description of command.
*
* @var string
*/
protected $description = 'Create a new RESTfull controller.';
/**
* The type of class being generated.
*
* @var string
*/
protected $type = 'Controller';
/**
* Execute the command.
*
* @return void
*/
public function fire()
{
try {
// Generate create request for controller
$this->call('make:request', [
'name' => $this->argument('name') . 'CreateRequest'
]);
// Generate update request for controller
$this->call('make:request', [
'name' => $this->argument('name') . 'UpdateRequest'
]);
(new ControllerGenerator([
'name' => $this->argument('name'),
'force' => $this->option('force'),
]))->run();
$this->info($this->type . ' created successfully.');
} catch (FileAlreadyExistsException $e) {
$this->error($this->type . ' already exists!');
return false;
}
}
/**
* The array of command arguments.
*
* @return array
*/
public function getArguments()
{
return [
[
'name',
InputArgument::REQUIRED,
'The name of model for which the controller is being generated.',
null
],
];
}
/**
* The array of command options.
*
* @return array
*/
public function getOptions()
{
return [
[
'force',
'f',
InputOption::VALUE_NONE,
'Force the creation if file already exists.',
null
],
];
}
}