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

Apply fixes from StyleCI

This commit is contained in:
stancl 2020-03-16 22:54:40 +00:00 committed by StyleCI Bot
parent d78ce10c21
commit beb1fa9bc1
2 changed files with 3 additions and 2 deletions

View file

@ -7,7 +7,6 @@ namespace Stancl\Tenancy\Middleware;
use Closure;
use Illuminate\Http\Request;
use Stancl\Tenancy\Exceptions\TenantCouldNotBeIdentifiedException;
use Stancl\Tenancy\TenantManager;
class InitializeTenancyByRequestData
{

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Tests;
use Illuminate\Support\Facades\Route;
@ -42,7 +44,7 @@ class RequestDataIdentificationTest extends TestCase
])
->assertSee($tenant->id);
}
/** @test */
public function query_parameter_identification_works()
{