mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 12:04:03 +00:00
18 lines
334 B
PHP
18 lines
334 B
PHP
<?php
|
|
|
|
namespace Stancl\Tenancy\Tests\Etc;
|
|
|
|
use Stancl\Tenancy\Tests\Etc\ExampleCommand;
|
|
use Orchestra\Testbench\Console\Kernel;
|
|
|
|
class ConsoleKernel extends Kernel
|
|
{
|
|
/**
|
|
* The Artisan commands provided by your application.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $commands = [
|
|
ExampleCommand::class,
|
|
];
|
|
}
|