Вход Регистрация
Файл: vendor/laravel/framework/src/Illuminate/Foundation/Console/ConsoleMakeCommand.php
Строк: 133
<?php

namespace IlluminateFoundationConsole;

use 
IlluminateConsoleConcernsCreatesMatchingTest;
use 
IlluminateConsoleGeneratorCommand;
use 
IlluminateSupportStr;
use 
SymfonyComponentConsoleAttributeAsCommand;
use 
SymfonyComponentConsoleInputInputArgument;
use 
SymfonyComponentConsoleInputInputOption;

#[AsCommand(name: 'make:command')]
class ConsoleMakeCommand extends GeneratorCommand
{
    use 
CreatesMatchingTest;

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

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

    
/**
     * The type of class being generated.
     *
     * @var string
     */
    
protected $type 'Console command';

    
/**
     * Replace the class name for the given stub.
     *
     * @param  string  $stub
     * @param  string  $name
     * @return string
     */
    
protected function replaceClass($stub$name)
    {
        
$stub parent::replaceClass($stub$name);

        
$command $this->option('command') ?: 'app:'.Str::of($name)->classBasename()->kebab()->value();

        return 
str_replace(['dummy:command''{{ command }}'], $command$stub);
    }

    
/**
     * Get the stub file for the generator.
     *
     * @return string
     */
    
protected function getStub()
    {
        
$relativePath '/stubs/console.stub';

        return 
file_exists($customPath $this->laravel->basePath(trim($relativePath'/')))
            ? 
$customPath
            
__DIR__.$relativePath;
    }

    
/**
     * Get the default namespace for the class.
     *
     * @param  string  $rootNamespace
     * @return string
     */
    
protected function getDefaultNamespace($rootNamespace)
    {
        return 
$rootNamespace.'ConsoleCommands';
    }

    
/**
     * Get the console command arguments.
     *
     * @return array
     */
    
protected function getArguments()
    {
        return [
            [
'name'InputArgument::REQUIRED'The name of the command'],
        ];
    }

    
/**
     * Get the console command options.
     *
     * @return array
     */
    
protected function getOptions()
    {
        return [
            [
'force''f'InputOption::VALUE_NONE'Create the class even if the console command already exists'],
            [
'command'nullInputOption::VALUE_OPTIONAL'The terminal command that will be used to invoke the class'],
        ];
    }
}
Онлайн: 0
Реклама