mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 20:54:03 +00:00
move console classes to Console directory
This commit is contained in:
parent
50d903feb8
commit
8418fac990
5 changed files with 6 additions and 5 deletions
16
tests/Etc/Console/ConsoleKernel.php
Normal file
16
tests/Etc/Console/ConsoleKernel.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Stancl\Tenancy\Tests\Etc\Console;
|
||||
|
||||
use Orchestra\Testbench\Foundation\Console\Kernel;
|
||||
|
||||
class ConsoleKernel extends Kernel
|
||||
{
|
||||
protected $commands = [
|
||||
ExampleCommand::class,
|
||||
ExampleQuestionCommand::class,
|
||||
AddUserCommand::class,
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue