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

Move HttpKernel to /tests/

This commit is contained in:
Samuel Štancl 2019-02-07 15:39:39 +01:00
parent f95416042c
commit 136862369d
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
<?php
namespace Stancl\Tenancy\Testing;
namespace Stancl\Tenancy\Tests;
use Illuminate\Foundation\Http\Kernel;

View file

@ -59,6 +59,6 @@ class TestCase extends \Orchestra\Testbench\TestCase
*/
protected function resolveApplicationHttpKernel($app)
{
$app->singleton('Illuminate\Contracts\Http\Kernel', \Stancl\Tenancy\Testing\HttpKernel::class);
$app->singleton('Illuminate\Contracts\Http\Kernel', HttpKernel::class);
}
}