Skip to content

Commit 5e56f8a

Browse files
authored
Ensure namespaces match the project structure. (#39107)
1 parent 8a565fa commit 5e56f8a

11 files changed

+11
-11
lines changed

tests/Foundation/Bootstrap/LoadEnvironmentVariablesTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Illuminate\Tests\Foundation;
3+
namespace Illuminate\Tests\Foundation\Bootstrap;
44

55
use Illuminate\Foundation\Application;
66
use Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables;

tests/Foundation/Http/KernelTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Illuminate\Tests\Foundation\Http;
3+
namespace Illuminate\Tests\Foundation\Bootstrap\Http;
44

55
use Illuminate\Events\Dispatcher;
66
use Illuminate\Foundation\Application;

tests/Foundation/Http/Middleware/ConvertEmptyStringsToNullTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Illuminate\Tests\Foundation\Http\Middleware;
3+
namespace Illuminate\Tests\Foundation\Bootstrap\Http\Middleware;
44

55
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
66
use Illuminate\Http\Request;

tests/Foundation/Http/Middleware/TransformsRequestTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Illuminate\Tests\Foundation\Http\Middleware;
3+
namespace Illuminate\Tests\Foundation\Bootstrap\Http\Middleware;
44

55
use Illuminate\Foundation\Http\Middleware\TransformsRequest;
66
use Illuminate\Http\Request;

tests/Foundation/Http/Middleware/TrimStringsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Illuminate\Tests\Foundation\Http\Middleware;
3+
namespace Illuminate\Tests\Foundation\Bootstrap\Http\Middleware;
44

55
use Illuminate\Foundation\Http\Middleware\TrimStrings;
66
use Illuminate\Http\Request;

tests/Foundation/Testing/Concerns/InteractsWithContainerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Illuminate\Tests\Foundation\Testing\Concerns;
3+
namespace Illuminate\Tests\Foundation\Bootstrap\Testing\Concerns;
44

55
use Illuminate\Foundation\Mix;
66
use Orchestra\Testbench\TestCase;

tests/Foundation/Testing/Concerns/InteractsWithViewsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Illuminate\Tests\Foundation\Testing\Concerns;
3+
namespace Illuminate\Tests\Foundation\Bootstrap\Testing\Concerns;
44

55
use Illuminate\Foundation\Testing\Concerns\InteractsWithViews;
66
use Illuminate\View\Component;

tests/Foundation/Testing/Concerns/MakesHttpRequestsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Illuminate\Tests\Foundation\Testing\Concerns;
3+
namespace Illuminate\Tests\Foundation\Bootstrap\Testing\Concerns;
44

55
use Illuminate\Contracts\Routing\Registrar;
66
use Illuminate\Contracts\Routing\UrlGenerator;

tests/Foundation/Testing/WormholeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Illuminate\Tests\Foundation\Testing;
3+
namespace Illuminate\Tests\Foundation\Bootstrap\Testing;
44

55
use Carbon\CarbonImmutable;
66
use Illuminate\Foundation\Testing\Wormhole;

tests/Integration/Auth/ApiAuthenticationWithEloquentTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Illuminate\Tests\Integration\Auth\ApiAuthenticationWithEloquentTest;
3+
namespace Illuminate\Tests\Integration\Auth;
44

55
use Illuminate\Database\QueryException;
66
use Illuminate\Foundation\Auth\User as FoundationUser;

0 commit comments

Comments
 (0)