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

namespace IlluminateFoundationConsole;

use 
IlluminateConsoleGeneratorCommand;
use 
SymfonyComponentConsoleAttributeAsCommand;
use 
SymfonyComponentConsoleInputInputOption;

#[AsCommand(name: 'make:interface')]
class InterfaceMakeCommand extends GeneratorCommand
{
    
/**
     * The console command name.
     *
     * @var string
     */
    
protected $name 'make:interface';

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

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

    
/**
     * Get the stub file for the generator.
     *
     * @return string
     */
    
protected function getStub()
    {
        return 
__DIR__.'/stubs/interface.stub';
    }

    
/**
     * Get the default namespace for the class.
     *
     * @param  string  $rootNamespace
     * @return string
     */
    
protected function getDefaultNamespace($rootNamespace)
    {
        return 
match (true) {
            
is_dir(app_path('Contracts')) => $rootNamespace.'\Contracts',
            
is_dir(app_path('Interfaces')) => $rootNamespace.'\Interfaces',
            default => 
$rootNamespace,
        };
    }

    
/**
     * Get the console command arguments.
     *
     * @return array
     */
    
protected function getOptions()
    {
        return [
            [
'force''f'InputOption::VALUE_NONE'Create the interface even if the interface already exists'],
        ];
    }
}
Онлайн: 1
Реклама