1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 18:04:03 +00:00
tenancy/tests/Etc/ConsoleKernel.php
Samuel Štancl 9883219544 wip
2021-12-13 13:09:16 +01:00

15 lines
258 B
PHP

<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Tests\Etc;
use Orchestra\Testbench\Foundation\Console\Kernel;
class ConsoleKernel extends Kernel
{
protected $commands = [
ExampleCommand::class,
AddUserCommand::class,
];
}