rinvex/cortex-foundation

View on GitHub
src/Console/Commands/ComponentMakeCommand.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Cortex\Foundation\Console\Commands;

use Illuminate\Console\ConfirmableTrait;
use Symfony\Component\Console\Attribute\AsCommand;
use Cortex\Foundation\Traits\ConsoleMakeModuleCommand;
use Illuminate\Foundation\Console\ComponentMakeCommand as BaseComponentMakeCommand;

#[AsCommand(name: 'make:component')]
class ComponentMakeCommand extends BaseComponentMakeCommand
{
    use ConfirmableTrait;
    use ConsoleMakeModuleCommand;
}