mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 16:14:02 +00:00
20 lines
346 B
PHP
20 lines
346 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Tests\Etc;
|
|
|
|
use Orchestra\Testbench\Console\Kernel;
|
|
|
|
class ConsoleKernel extends Kernel
|
|
{
|
|
/**
|
|
* The Artisan commands provided by your application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $commands = [
|
|
ExampleCommand::class,
|
|
AddUserCommand::class,
|
|
];
|
|
}
|