We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f18b5f8 commit 4005f56Copy full SHA for 4005f56
tests/TestingTools/Asserts/DatabaseAssertsTest.php
@@ -1,6 +1,10 @@
1
<?php
2
3
+namespace Illuminated\Testing\TestingTools\Tests\Asserts;
4
+
5
use Illuminated\Testing\TestingTools\Tests\TestCase;
6
+use Orchestra\Database\ConsoleServiceProvider;
7
+use Post;
8
9
class DatabaseAssertsTest extends TestCase
10
{
@@ -16,8 +20,8 @@ public function setUp()
16
20
17
21
protected function getPackageProviders($app)
18
22
19
- if (class_exists(Orchestra\Database\ConsoleServiceProvider::class)) {
- return [Orchestra\Database\ConsoleServiceProvider::class];
23
+ if (class_exists(ConsoleServiceProvider::class)) {
24
+ return [ConsoleServiceProvider::class];
25
}
26
27
return [];
0 commit comments