mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 19:14:04 +00:00
* Use StringInput instead of ArgvInput so that tenants:run accepts args properly * Test that tenants:run parses the arguments correctly * Fix code style (php-cs-fixer) * Fix PHPStan issue * remove unnecessary () --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Samuel Štancl <samuel.stancl@gmail.com>
17 lines
343 B
PHP
17 lines
343 B
PHP
<?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,
|
|
AnotherExampleCommand::class,
|
|
ExampleQuestionCommand::class,
|
|
AddUserCommand::class,
|
|
];
|
|
}
|