Вход Регистрация
Файл: gapps/vendor/prettus/l5-repository/src/Prettus/Repository/Generators/Commands/EntityCommand.php
Строк: 119
<?php
namespace PrettusRepositoryGeneratorsCommands;

use 
IlluminateConsoleCommand;
use 
IlluminateSupportCollection;
use 
SymfonyComponentConsoleInputInputArgument;
use 
SymfonyComponentConsoleInputInputOption;

class 
EntityCommand extends Command
{

    
/**
     * The name of command.
     *
     * @var string
     */
    
protected $name 'make:entity';

    
/**
     * The description of command.
     *
     * @var string
     */
    
protected $description 'Create a new entity.';

    
/**
     * @var Collection
     */
    
protected $generators null;


    
/**
     * Execute the command.
     *
     * @return void
     */
    
public function fire()
    {

        if (
$this->confirm('Would you like to create a Presenter? [y|N]')) {
            
$this->call('make:presenter', [
                
'name'    => $this->argument('name'),
                
'--force' => $this->option('force'),
            ]);
        }

        
$validator $this->option('validator');
        if (
is_null($validator) && $this->confirm('Would you like to create a Validator? [y|N]')) {
            
$validator 'yes';
        }

        if (
$validator == 'yes') {
            
$this->call('make:validator', [
                
'name'    => $this->argument('name'),
                
'--rules' => $this->option('rules'),
                
'--force' => $this->option('force'),
            ]);
        }

        if (
$this->confirm('Would you like to create a Controller? [y|N]')) {

            
// Generate a controller resource
            
$this->call('make:resource', [
                
'name'    => $this->argument('name'),
                
'--force' => $this->option('force')
            ]);
        }

        
$this->call('make:repository', [
            
'name'        => $this->argument('name'),
            
'--fillable'  => $this->option('fillable'),
            
'--rules'     => $this->option('rules'),
            
'--validator' => $validator,
            
'--force'     => $this->option('force')
        ]);

        
$this->call('make:bindings', [
            
'name'    => $this->argument('name'),
            
'--force' => $this->option('force')
        ]);
    }


    
/**
     * The array of command arguments.
     *
     * @return array
     */
    
public function getArguments()
    {
        return [
            [
                
'name',
                
InputArgument::REQUIRED,
                
'The name of class being generated.',
                
null
            
],
        ];
    }


    
/**
     * The array of command options.
     *
     * @return array
     */
    
public function getOptions()
    {
        return [
            [
                
'fillable',
                
null,
                
InputOption::VALUE_OPTIONAL,
                
'The fillable attributes.',
                
null
            
],
            [
                
'rules',
                
null,
                
InputOption::VALUE_OPTIONAL,
                
'The rules of validation attributes.',
                
null
            
],
            [
                
'validator',
                
null,
                
InputOption::VALUE_OPTIONAL,
                
'Adds validator reference to the repository.',
                
null
            
],
            [
                
'force',
                
'f',
                
InputOption::VALUE_NONE,
                
'Force the creation if file already exists.',
                
null
            
]
        ];
    }
}
Онлайн: 1
Реклама