Skip to content

Commit d262afe

Browse files
authored
chore: fix some indirect deprecations (#4858)
1 parent 4c938fc commit d262afe

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

tests/Fixtures/app/AppKernel.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ protected function configureContainer(ContainerBuilder $c, LoaderInterface $load
130130
],
131131
'messenger' => $messengerConfig,
132132
'router' => ['utf8' => true],
133+
'http_method_override' => false,
133134
]);
134135

135136
$alg = class_exists(NativePasswordHasher::class, false) || class_exists('Symfony\Component\Security\Core\Encoder\NativePasswordEncoder') ? 'auto' : 'bcrypt';

tests/Fixtures/app/config/config_common.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
doctrine:
22
dbal:
3-
driver: 'pdo_sqlite'
4-
path: '%kernel.cache_dir%/db.sqlite'
5-
charset: 'UTF8'
3+
driver: 'pdo_sqlite'
4+
charset: 'UTF8'
65
types:
7-
uuid: Ramsey\Uuid\Doctrine\UuidType
6+
uuid: Ramsey\Uuid\Doctrine\UuidType
87
symfony_uuid: Symfony\Bridge\Doctrine\Types\UuidType
98

109
orm:
11-
auto_generate_proxy_classes: '%kernel.debug%'
10+
auto_generate_proxy_classes: '%kernel.debug%'
1211
mappings:
13-
TestBundle:
12+
TestBundle:
1413
type: 'attribute'
1514

1615
web_profiler:

tests/Fixtures/app/config/config_mysql.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ doctrine:
1111
dbal:
1212
driver: pdo_mysql
1313
url: '%env(resolve:DATABASE_URL)%'
14-
path: ~
1514
server_version: '%env(MYSQL_VERSION)%'
1615
types:
1716
uuid: Ramsey\Uuid\Doctrine\UuidType

tests/Fixtures/app/config/config_postgres.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ doctrine:
1111
dbal:
1212
driver: pdo_pgsql
1313
url: '%env(resolve:DATABASE_URL)%'
14-
path: ~
1514
server_version: '%env(POSTGRES_VERSION)%'
1615
types:
1716
uuid: Ramsey\Uuid\Doctrine\UuidType

0 commit comments

Comments
 (0)