1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 12:54:05 +00:00

Apply fixes from StyleCI

This commit is contained in:
stancl 2020-05-26 11:25:35 +00:00 committed by StyleCI Bot
parent ed200ab733
commit d94ff22170
2 changed files with 7 additions and 3 deletions

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Tests;
use Illuminate\Support\Facades\Route;
@ -31,7 +33,7 @@ class UniversalRouteTest extends TestCase
$this->get('http://localhost/foo')
->assertSuccessful()
->assertSee('Tenancy is not initialized.');
$tenant = Tenant::create([
'id' => 'acme',
]);
@ -61,4 +63,4 @@ class UniversalRouteTest extends TestCase
->assertSuccessful()
->assertSee('acme');
}
}
}