File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 4
4
5
5
namespace League \Bundle \OAuth2ServerBundle \Tests \Acceptance ;
6
6
7
- use Doctrine \DBAL \Platforms \SQLitePlatform ;
7
+ use Doctrine \DBAL \Platforms \SqlitePlatform ;
8
8
use League \Bundle \OAuth2ServerBundle \Tests \TestHelper ;
9
9
use Symfony \Bundle \FrameworkBundle \Console \Application ;
10
10
use Symfony \Bundle \FrameworkBundle \KernelBrowser ;
@@ -31,7 +31,7 @@ protected function setUp(): void
31
31
TestHelper::initializeDoctrineSchema ($ this ->application );
32
32
33
33
$ connection = $ this ->client ->getContainer ()->get ('database_connection ' );
34
- if ($ connection ->getDatabasePlatform () instanceof SQLitePlatform ) {
34
+ if ($ connection ->getDatabasePlatform () instanceof SqlitePlatform ) {
35
35
// https://www.sqlite.org/foreignkeys.html
36
36
$ connection ->executeQuery ('PRAGMA foreign_keys = ON ' );
37
37
}
Original file line number Diff line number Diff line change 4
4
5
5
namespace League \Bundle \OAuth2ServerBundle \Tests ;
6
6
7
- use Doctrine \DBAL \Platforms \SQLitePlatform ;
7
+ use Doctrine \DBAL \Platforms \SqlitePlatform ;
8
8
use Doctrine \ORM \Mapping \Annotation ;
9
9
use League \Bundle \OAuth2ServerBundle \Manager \AccessTokenManagerInterface ;
10
10
use League \Bundle \OAuth2ServerBundle \Manager \AuthorizationCodeManagerInterface ;
@@ -229,7 +229,7 @@ private function configureControllers(ContainerBuilder $container): void
229
229
private function configureDatabaseServices (ContainerBuilder $ container ): void
230
230
{
231
231
$ container
232
- ->register (SQLitePlatform ::class)
232
+ ->register (SqlitePlatform ::class)
233
233
->setAutoconfigured (true )
234
234
->setAutowired (true )
235
235
;
You can’t perform that action at this time.
0 commit comments