1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 18:54:03 +00:00

Apply fixes from StyleCI

This commit is contained in:
stancl 2019-08-09 16:18:17 +00:00 committed by StyleCI Bot
parent cfaa6463ee
commit 1322d02c78
3 changed files with 3 additions and 4 deletions

View file

@ -105,9 +105,9 @@ class CommandsTest extends TestCase
public function run_commands_works()
{
$uuid = tenant()->create('run.localhost')['uuid'];
Artisan::call('tenants:migrate', ['--tenants' => $uuid]);
$this->artisan("tenants:run foo --tenants=$uuid a b")
->expectsOutput("User's name is Test command")
->expectsOutput('a;b');

View file

@ -2,7 +2,6 @@
namespace Stancl\Tenancy\Tests\Etc;
use Stancl\Tenancy\Tests\Etc\ExampleCommand;
use Orchestra\Testbench\Console\Kernel;
class ConsoleKernel extends Kernel