mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 17:44:04 +00:00
19 lines
315 B
PHP
19 lines
315 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,
|
|
];
|
|
}
|