diff --git a/tests/Assertions/AssertsActivityLogged.php b/tests/Assertions/AssertsActivityLogged.php index 7bf990d5d..6f5f988d4 100644 --- a/tests/Assertions/AssertsActivityLogged.php +++ b/tests/Assertions/AssertsActivityLogged.php @@ -1,12 +1,12 @@ key = $this->createApiKey($this->user); $this - ->withHeader('Accept', 'application/vnd.pterodactyl.v1+json') + ->withHeader('Accept', 'application/vnd.pyrodactyl.v1+json') ->withHeader('Authorization', 'Bearer ' . $this->key->identifier . decrypt($this->key->token)); } diff --git a/tests/Integration/Api/Application/Location/LocationControllerTest.php b/tests/Integration/Api/Application/Location/LocationControllerTest.php index ed75413ac..5afb9f898 100644 --- a/tests/Integration/Api/Application/Location/LocationControllerTest.php +++ b/tests/Integration/Api/Application/Location/LocationControllerTest.php @@ -1,14 +1,14 @@ repository->all(); $response = $this->getJson('/api/application/nests'); diff --git a/tests/Integration/Api/Application/Users/ExternalUserControllerTest.php b/tests/Integration/Api/Application/Users/ExternalUserControllerTest.php index fc37b7232..2c413eb45 100644 --- a/tests/Integration/Api/Application/Users/ExternalUserControllerTest.php +++ b/tests/Integration/Api/Application/Users/ExternalUserControllerTest.php @@ -1,11 +1,11 @@ getShortName()); + $transformer = sprintf('\\Pyrodactyl\\Transformers\\Api\\Client\\%sTransformer', $reflect->getShortName()); $transformer = new $transformer(); $this->assertInstanceOf(BaseClientTransformer::class, $transformer); diff --git a/tests/Integration/Api/Client/ClientControllerTest.php b/tests/Integration/Api/Client/ClientControllerTest.php index 954ca6f53..e056a8607 100644 --- a/tests/Integration/Api/Client/ClientControllerTest.php +++ b/tests/Integration/Api/Client/ClientControllerTest.php @@ -1,12 +1,12 @@ times(3)->create(); - /** @var \Pterodactyl\Models\Server[] $servers */ + /** @var \Pyrodactyl\Models\Server[] $servers */ $servers = [ $this->createServerModel(['user_id' => $users[0]->id]), $this->createServerModel(['user_id' => $users[1]->id]), @@ -45,11 +45,11 @@ public function testOnlyLoggedInUsersServersAreReturned() */ public function testServersAreFilteredUsingNameAndUuidInformation() { - /** @var \Pterodactyl\Models\User[] $users */ + /** @var \Pyrodactyl\Models\User[] $users */ $users = User::factory()->times(2)->create(); $users[0]->update(['root_admin' => true]); - /** @var \Pterodactyl\Models\Server[] $servers */ + /** @var \Pyrodactyl\Models\Server[] $servers */ $servers = [ $this->createServerModel(['user_id' => $users[0]->id, 'name' => 'Julia']), $this->createServerModel(['user_id' => $users[1]->id, 'uuidShort' => '12121212', 'name' => 'Janice']), @@ -143,7 +143,7 @@ public function testServersAreFilteredUsingAllocationInformation() */ public function testServersUserIsASubuserOfAreReturned() { - /** @var \Pterodactyl\Models\User[] $users */ + /** @var \Pyrodactyl\Models\User[] $users */ $users = User::factory()->times(3)->create(); $servers = [ $this->createServerModel(['user_id' => $users[0]->id]), @@ -174,7 +174,7 @@ public function testServersUserIsASubuserOfAreReturned() */ public function testFilterOnlyOwnerServers() { - /** @var \Pterodactyl\Models\User[] $users */ + /** @var \Pyrodactyl\Models\User[] $users */ $users = User::factory()->times(3)->create(); $servers = [ $this->createServerModel(['user_id' => $users[0]->id]), @@ -223,7 +223,7 @@ public function testPermissionsAreReturned() */ public function testOnlyAdminLevelServersAreReturned() { - /** @var \Pterodactyl\Models\User[] $users */ + /** @var \Pyrodactyl\Models\User[] $users */ $users = User::factory()->times(4)->create(); $users[0]->update(['root_admin' => true]); @@ -258,7 +258,7 @@ public function testOnlyAdminLevelServersAreReturned() */ public function testAllServersAreReturnedToAdmin() { - /** @var \Pterodactyl\Models\User[] $users */ + /** @var \Pyrodactyl\Models\User[] $users */ $users = User::factory()->times(4)->create(); $users[0]->update(['root_admin' => true]); @@ -289,7 +289,7 @@ public function testAllServersAreReturnedToAdmin() #[\PHPUnit\Framework\Attributes\DataProvider('filterTypeDataProvider')] public function testNoServersAreReturnedIfAdminFilterIsPassedByRegularUser(string $type) { - /** @var \Pterodactyl\Models\User[] $users */ + /** @var \Pyrodactyl\Models\User[] $users */ $users = User::factory()->times(3)->create(); $this->createServerModel(['user_id' => $users[0]->id]); diff --git a/tests/Integration/Api/Client/SSHKeyControllerTest.php b/tests/Integration/Api/Client/SSHKeyControllerTest.php index 03d40f709..14e10765e 100644 --- a/tests/Integration/Api/Client/SSHKeyControllerTest.php +++ b/tests/Integration/Api/Client/SSHKeyControllerTest.php @@ -1,10 +1,10 @@ set('pterodactyl.client_features.allocations.enabled', true); - config()->set('pterodactyl.client_features.allocations.range_start', 5000); - config()->set('pterodactyl.client_features.allocations.range_end', 5050); + config()->set('pyrodactyl.client_features.allocations.enabled', true); + config()->set('pyrodactyl.client_features.allocations.range_start', 5000); + config()->set('pyrodactyl.client_features.allocations.range_end', 5050); } /** @@ -27,7 +27,7 @@ public function setUp(): void #[\PHPUnit\Framework\Attributes\DataProvider('permissionDataProvider')] public function testNewAllocationCanBeAssignedToServer(array $permission) { - /** @var \Pterodactyl\Models\Server $server */ + /** @var \Pyrodactyl\Models\Server $server */ [$user, $server] = $this->generateTestAccount($permission); $server->update(['allocation_limit' => 2]); @@ -46,7 +46,7 @@ public function testNewAllocationCanBeAssignedToServer(array $permission) */ public function testAllocationCannotBeCreatedIfUserDoesNotHavePermission() { - /** @var \Pterodactyl\Models\Server $server */ + /** @var \Pyrodactyl\Models\Server $server */ [$user, $server] = $this->generateTestAccount([Permission::ACTION_ALLOCATION_UPDATE]); $server->update(['allocation_limit' => 2]); @@ -58,9 +58,9 @@ public function testAllocationCannotBeCreatedIfUserDoesNotHavePermission() */ public function testAllocationCannotBeCreatedIfNotEnabled() { - config()->set('pterodactyl.client_features.allocations.enabled', false); + config()->set('pyrodactyl.client_features.allocations.enabled', false); - /** @var \Pterodactyl\Models\Server $server */ + /** @var \Pyrodactyl\Models\Server $server */ [$user, $server] = $this->generateTestAccount(); $server->update(['allocation_limit' => 2]); @@ -75,7 +75,7 @@ public function testAllocationCannotBeCreatedIfNotEnabled() */ public function testAllocationCannotBeCreatedIfServerIsAtLimit() { - /** @var \Pterodactyl\Models\Server $server */ + /** @var \Pyrodactyl\Models\Server $server */ [$user, $server] = $this->generateTestAccount(); $server->update(['allocation_limit' => 1]); diff --git a/tests/Integration/Api/Client/Server/Allocation/DeleteAllocationTest.php b/tests/Integration/Api/Client/Server/Allocation/DeleteAllocationTest.php index f6bd466e6..d2101def4 100644 --- a/tests/Integration/Api/Client/Server/Allocation/DeleteAllocationTest.php +++ b/tests/Integration/Api/Client/Server/Allocation/DeleteAllocationTest.php @@ -1,11 +1,11 @@ generateTestAccount($permission); $server->update(['allocation_limit' => 2]); @@ -37,7 +37,7 @@ public function testAllocationCanBeDeletedFromServer(array $permission) */ public function testErrorIsReturnedIfUserDoesNotHavePermission() { - /** @var \Pterodactyl\Models\Server $server */ + /** @var \Pyrodactyl\Models\Server $server */ [$user, $server] = $this->generateTestAccount([Permission::ACTION_ALLOCATION_CREATE]); /** @var Allocation $allocation */ @@ -58,7 +58,7 @@ public function testErrorIsReturnedIfUserDoesNotHavePermission() */ public function testErrorIsReturnedIfAllocationIsPrimary() { - /** @var \Pterodactyl\Models\Server $server */ + /** @var \Pyrodactyl\Models\Server $server */ [$user, $server] = $this->generateTestAccount(); $server->update(['allocation_limit' => 2]); @@ -89,7 +89,7 @@ public function testAllocationCannotBeDeletedIfServerLimitIsNotDefined() */ public function testErrorIsReturnedIfAllocationDoesNotBelongToServer() { - /** @var \Pterodactyl\Models\Server $server */ + /** @var \Pyrodactyl\Models\Server $server */ [$user, $server] = $this->generateTestAccount(); [, $server2] = $this->generateTestAccount(); diff --git a/tests/Integration/Api/Client/Server/Backup/BackupAuthorizationTest.php b/tests/Integration/Api/Client/Server/Backup/BackupAuthorizationTest.php index 33fde157c..4ca062172 100644 --- a/tests/Integration/Api/Client/Server/Backup/BackupAuthorizationTest.php +++ b/tests/Integration/Api/Client/Server/Backup/BackupAuthorizationTest.php @@ -1,12 +1,12 @@ set('pterodactyl.client_features.schedules.per_schedule_task_limit', 2); + config()->set('pyrodactyl.client_features.schedules.per_schedule_task_limit', 2); [$user, $server] = $this->generateTestAccount(); diff --git a/tests/Integration/Api/Client/Server/ScheduleTask/DeleteScheduleTaskTest.php b/tests/Integration/Api/Client/Server/ScheduleTask/DeleteScheduleTaskTest.php index b610dd379..74aaf7d5e 100644 --- a/tests/Integration/Api/Client/Server/ScheduleTask/DeleteScheduleTaskTest.php +++ b/tests/Integration/Api/Client/Server/ScheduleTask/DeleteScheduleTaskTest.php @@ -1,13 +1,13 @@ generateTestAccount($permissions); $egg = $this->cloneEggAndVariables($server->egg); diff --git a/tests/Integration/Api/Client/Server/Startup/UpdateStartupVariableTest.php b/tests/Integration/Api/Client/Server/Startup/UpdateStartupVariableTest.php index cb67cb095..ababeaa80 100644 --- a/tests/Integration/Api/Client/Server/Startup/UpdateStartupVariableTest.php +++ b/tests/Integration/Api/Client/Server/Startup/UpdateStartupVariableTest.php @@ -1,12 +1,12 @@ generateTestAccount($permissions); $server->fill([ 'startup' => 'java {{SERVER_JARFILE}} --version {{BUNGEE_VERSION}}', @@ -50,7 +50,7 @@ public function testStartupVariableCanBeUpdated(array $permissions) #[\PHPUnit\Framework\Attributes\DataProvider('permissionsDataProvider')] public function testStartupVariableCannotBeUpdatedIfNotUserViewableOrEditable(array $permissions) { - /** @var \Pterodactyl\Models\Server $server */ + /** @var \Pyrodactyl\Models\Server $server */ [$user, $server] = $this->generateTestAccount($permissions); $egg = $this->cloneEggAndVariables($server->egg); @@ -85,7 +85,7 @@ public function testStartupVariableCannotBeUpdatedIfNotUserViewableOrEditable(ar */ public function testHiddenVariablesAreNotReturnedInStartupCommandWhenUpdatingVariable() { - /** @var \Pterodactyl\Models\Server $server */ + /** @var \Pyrodactyl\Models\Server $server */ [$user, $server] = $this->generateTestAccount(); $egg = $this->cloneEggAndVariables($server->egg); @@ -112,11 +112,11 @@ public function testHiddenVariablesAreNotReturnedInStartupCommandWhenUpdatingVar * Test that an egg variable with a validation rule of 'nullable|string' works if no value * is passed through in the request. * - * @see https://github.com/pterodactyl/panel/issues/2433 + * @see https://github.com/pyrodactyl/panel/issues/2433 */ public function testEggVariableWithNullableStringIsNotRequired() { - /** @var \Pterodactyl\Models\Server $server */ + /** @var \Pyrodactyl\Models\Server $server */ [$user, $server] = $this->generateTestAccount(); $egg = $this->cloneEggAndVariables($server->egg); diff --git a/tests/Integration/Api/Client/Server/Subuser/CreateServerSubuserTest.php b/tests/Integration/Api/Client/Server/Subuser/CreateServerSubuserTest.php index 12aef45e8..757e379c8 100644 --- a/tests/Integration/Api/Client/Server/Subuser/CreateServerSubuserTest.php +++ b/tests/Integration/Api/Client/Server/Subuser/CreateServerSubuserTest.php @@ -1,14 +1,14 @@ generateTestAccount(); // Force the node to HTTPS since we want to confirm it gets transformed to wss:// in the URL. @@ -98,8 +98,8 @@ public function testJwtIsConfiguredCorrectlyForServerSubuser() { $permissions = [Permission::ACTION_WEBSOCKET_CONNECT, Permission::ACTION_CONTROL_CONSOLE]; - /** @var \Pterodactyl\Models\User $user */ - /** @var \Pterodactyl\Models\Server $server */ + /** @var \Pyrodactyl\Models\User $user */ + /** @var \Pyrodactyl\Models\Server $server */ [$user, $server] = $this->generateTestAccount($permissions); $response = $this->actingAs($user)->getJson("/api/client/servers/$server->uuid/websocket"); diff --git a/tests/Integration/Api/Client/TwoFactorControllerTest.php b/tests/Integration/Api/Client/TwoFactorControllerTest.php index 5c3d80388..1222a4cbd 100644 --- a/tests/Integration/Api/Client/TwoFactorControllerTest.php +++ b/tests/Integration/Api/Client/TwoFactorControllerTest.php @@ -1,12 +1,12 @@ assertNotNull($tokens[0]->created_at); $tokens = $tokens->pluck('token')->toArray(); diff --git a/tests/Integration/Api/Remote/SftpAuthenticationControllerTest.php b/tests/Integration/Api/Remote/SftpAuthenticationControllerTest.php index c793435d6..6ccb5f290 100644 --- a/tests/Integration/Api/Remote/SftpAuthenticationControllerTest.php +++ b/tests/Integration/Api/Remote/SftpAuthenticationControllerTest.php @@ -1,14 +1,14 @@ set('pterodactyl.client_features.allocations.enabled', true); - config()->set('pterodactyl.client_features.allocations.range_start', 0); - config()->set('pterodactyl.client_features.allocations.range_end', 0); + config()->set('pyrodactyl.client_features.allocations.enabled', true); + config()->set('pyrodactyl.client_features.allocations.range_start', 0); + config()->set('pyrodactyl.client_features.allocations.range_end', 0); } /** @@ -50,8 +50,8 @@ public function testExistingAllocationIsPreferred() public function testNewAllocationIsCreatedIfOneIsNotFound() { $server = $this->createServerModel(); - config()->set('pterodactyl.client_features.allocations.range_start', 5000); - config()->set('pterodactyl.client_features.allocations.range_end', 5005); + config()->set('pyrodactyl.client_features.allocations.range_start', 5000); + config()->set('pyrodactyl.client_features.allocations.range_end', 5005); $response = $this->getService()->handle($server); $this->assertSame($server->id, $response->server_id); @@ -69,8 +69,8 @@ public function testOnlyPortNotInUseIsCreated() $server = $this->createServerModel(); $server2 = $this->createServerModel(['node_id' => $server->node_id]); - config()->set('pterodactyl.client_features.allocations.range_start', 5000); - config()->set('pterodactyl.client_features.allocations.range_end', 5001); + config()->set('pyrodactyl.client_features.allocations.range_start', 5000); + config()->set('pyrodactyl.client_features.allocations.range_end', 5001); Allocation::factory()->create([ 'server_id' => $server2->id, @@ -87,8 +87,8 @@ public function testExceptionIsThrownIfNoMoreAllocationsCanBeCreatedInRange() { $server = $this->createServerModel(); $server2 = $this->createServerModel(['node_id' => $server->node_id]); - config()->set('pterodactyl.client_features.allocations.range_start', 5000); - config()->set('pterodactyl.client_features.allocations.range_end', 5005); + config()->set('pyrodactyl.client_features.allocations.range_start', 5000); + config()->set('pyrodactyl.client_features.allocations.range_end', 5005); for ($i = 5000; $i <= 5005; ++$i) { Allocation::factory()->create([ @@ -134,8 +134,8 @@ public function testExceptionIsThrownIfStartOrEndRangeIsNotDefined() public function testExceptionIsThrownIfStartOrEndRangeIsNotNumeric() { $server = $this->createServerModel(); - config()->set('pterodactyl.client_features.allocations.range_start', 'hodor'); - config()->set('pterodactyl.client_features.allocations.range_end', 10); + config()->set('pyrodactyl.client_features.allocations.range_start', 'hodor'); + config()->set('pyrodactyl.client_features.allocations.range_end', 10); try { $this->getService()->handle($server); @@ -145,8 +145,8 @@ public function testExceptionIsThrownIfStartOrEndRangeIsNotNumeric() $this->assertSame('Expected an integerish value. Got: string', $exception->getMessage()); } - config()->set('pterodactyl.client_features.allocations.range_start', 10); - config()->set('pterodactyl.client_features.allocations.range_end', 'hodor'); + config()->set('pyrodactyl.client_features.allocations.range_start', 10); + config()->set('pyrodactyl.client_features.allocations.range_end', 'hodor'); try { $this->getService()->handle($server); @@ -159,7 +159,7 @@ public function testExceptionIsThrownIfStartOrEndRangeIsNotNumeric() public function testExceptionIsThrownIfFeatureIsNotEnabled() { - config()->set('pterodactyl.client_features.allocations.enabled', false); + config()->set('pyrodactyl.client_features.allocations.enabled', false); $server = $this->createServerModel(); $this->expectException(AutoAllocationNotEnabledException::class); diff --git a/tests/Integration/Services/Backups/DeleteBackupServiceTest.php b/tests/Integration/Services/Backups/DeleteBackupServiceTest.php index d1fb0faac..163c3535c 100644 --- a/tests/Integration/Services/Backups/DeleteBackupServiceTest.php +++ b/tests/Integration/Services/Backups/DeleteBackupServiceTest.php @@ -1,18 +1,18 @@ set('pterodactyl.client_features.databases.enabled', true); + config()->set('pyrodactyl.client_features.databases.enabled', true); $this->repository = $this->mock(DatabaseRepository::class); } @@ -43,7 +43,7 @@ public function testUniqueDatabaseNameIsGeneratedCorrectly() */ public function testExceptionIsThrownIfClientDatabasesAreNotEnabled() { - config()->set('pterodactyl.client_features.databases.enabled', false); + config()->set('pyrodactyl.client_features.databases.enabled', false); $this->expectException(DatabaseClientFeatureNotEnabledException::class); diff --git a/tests/Integration/Services/Databases/DeployServerDatabaseServiceTest.php b/tests/Integration/Services/Databases/DeployServerDatabaseServiceTest.php index f9afd8564..0428b0c5a 100644 --- a/tests/Integration/Services/Databases/DeployServerDatabaseServiceTest.php +++ b/tests/Integration/Services/Databases/DeployServerDatabaseServiceTest.php @@ -1,15 +1,15 @@ set('pterodactyl.client_features.databases.allow_random', true); + config()->set('pyrodactyl.client_features.databases.allow_random', true); Database::query()->delete(); DatabaseHost::query()->delete(); @@ -63,7 +63,7 @@ public function testErrorIsThrownIfNoDatabaseHostsExistOnNode() $node = Node::factory()->create(['location_id' => $server->location->id]); DatabaseHost::factory()->create(['node_id' => $node->id]); - config()->set('pterodactyl.client_features.databases.allow_random', false); + config()->set('pyrodactyl.client_features.databases.allow_random', false); $this->expectException(NoSuitableDatabaseHostException::class); diff --git a/tests/Integration/Services/Deployment/FindViableNodesServiceTest.php b/tests/Integration/Services/Deployment/FindViableNodesServiceTest.php index 64594c8b6..517213329 100644 --- a/tests/Integration/Services/Deployment/FindViableNodesServiceTest.php +++ b/tests/Integration/Services/Deployment/FindViableNodesServiceTest.php @@ -1,15 +1,15 @@ times(2)->create(); - /** @var \Pterodactyl\Models\Node[] $nodes */ + /** @var \Pyrodactyl\Models\Node[] $nodes */ $nodes = [ // This node should never be returned once we've completed the initial test which // runs without a location filter. diff --git a/tests/Integration/Services/Schedules/ProcessScheduleServiceTest.php b/tests/Integration/Services/Schedules/ProcessScheduleServiceTest.php index 29c91f463..5f9882f02 100644 --- a/tests/Integration/Services/Schedules/ProcessScheduleServiceTest.php +++ b/tests/Integration/Services/Schedules/ProcessScheduleServiceTest.php @@ -1,17 +1,17 @@ createServerModel(); $server2 = $this->createServerModel(); - /** @var \Pterodactyl\Models\Allocation[] $allocations */ + /** @var \Pyrodactyl\Models\Allocation[] $allocations */ $allocations = Allocation::factory()->times(4)->create(['node_id' => $server->node_id, 'notes' => 'Random notes']); $initialAllocationId = $server->allocation_id; @@ -84,7 +84,7 @@ public function testAllocationsCanBeModifiedForTheServer() public function testExceptionIsThrownIfRemovingTheDefaultAllocation() { $server = $this->createServerModel(); - /** @var \Pterodactyl\Models\Allocation[] $allocations */ + /** @var \Pyrodactyl\Models\Allocation[] $allocations */ $allocations = Allocation::factory()->times(4)->create(['node_id' => $server->node_id]); $allocations[0]->update(['server_id' => $server->id]); diff --git a/tests/Integration/Services/Servers/ServerCreationServiceTest.php b/tests/Integration/Services/Servers/ServerCreationServiceTest.php index e840bb30d..a2002135a 100644 --- a/tests/Integration/Services/Servers/ServerCreationServiceTest.php +++ b/tests/Integration/Services/Servers/ServerCreationServiceTest.php @@ -1,24 +1,24 @@ bungeecord = Egg::query() - ->where('author', 'support@pterodactyl.io') + ->where('author', 'support@pyrodactyl.io') ->where('name', 'Bungeecord') ->firstOrFail(); @@ -65,7 +65,7 @@ public function testServerIsCreatedWithDeploymentObject() 'location_id' => $location->id, ]); - /** @var \Pterodactyl\Models\Allocation[]|\Illuminate\Database\Eloquent\Collection $allocations */ + /** @var \Pyrodactyl\Models\Allocation[]|\Illuminate\Database\Eloquent\Collection $allocations */ $allocations = Allocation::factory()->times(5)->create([ 'node_id' => $node->id, ]); diff --git a/tests/Integration/Services/Servers/ServerDeletionServiceTest.php b/tests/Integration/Services/Servers/ServerDeletionServiceTest.php index 1a1446467..63e57adf1 100644 --- a/tests/Integration/Services/Servers/ServerDeletionServiceTest.php +++ b/tests/Integration/Services/Servers/ServerDeletionServiceTest.php @@ -1,18 +1,18 @@ findOrFail(2)->eggs()->firstOrFail(); $server = $this->createServerModel(['egg_id' => 1]); diff --git a/tests/Integration/Services/Servers/SuspensionServiceTest.php b/tests/Integration/Services/Servers/SuspensionServiceTest.php index e3f925cf5..a52c88106 100644 --- a/tests/Integration/Services/Servers/SuspensionServiceTest.php +++ b/tests/Integration/Services/Servers/SuspensionServiceTest.php @@ -1,12 +1,12 @@ egg = Egg::query() - ->where('author', 'support@pterodactyl.io') + ->where('author', 'support@pyrodactyl.io') ->where('name', 'Bungeecord') ->firstOrFail(); } diff --git a/tests/Integration/TestResponse.php b/tests/Integration/TestResponse.php index a5a8609c8..840402b65 100644 --- a/tests/Integration/TestResponse.php +++ b/tests/Integration/TestResponse.php @@ -1,10 +1,10 @@ where('author', 'support@pterodactyl.io')->where('name', 'Bungeecord')->firstOrFail(); + $egg = Egg::query()->where('author', 'support@pyrodactyl.io')->where('name', 'Bungeecord')->firstOrFail(); return $egg; } diff --git a/tests/Traits/MocksPdoConnection.php b/tests/Traits/MocksPdoConnection.php index 527fac62f..e46c320b7 100644 --- a/tests/Traits/MocksPdoConnection.php +++ b/tests/Traits/MocksPdoConnection.php @@ -1,6 +1,6 @@