@@ -67,7 +67,6 @@ private function addDbalSection(ArrayNodeDefinition $node): void
6767 // Key that should not be rewritten to the connection config
6868 $ excludedKeys = ['default_connection ' => true , 'driver_schemes ' => true , 'driver_scheme ' => true , 'types ' => true , 'type ' => true ];
6969
70- /** @phpstan-ignore class.notFound (Phpstan Symfony extension does not know yet how to deal with these) */
7170 $ node
7271 ->children ()
7372 ->arrayNode ('dbal ' )
@@ -167,7 +166,6 @@ private function getDbalConnectionsNode(): ArrayNodeDefinition
167166
168167 $ this ->configureDbalDriverNode ($ connectionNode );
169168
170- /** @phpstan-ignore class.notFound (Phpstan Symfony extension does not know yet how to deal with these) */
171169 $ connectionNode
172170 ->fixXmlConfig ('option ' )
173171 ->fixXmlConfig ('mapping_type ' )
@@ -214,7 +212,6 @@ private function getDbalConnectionsNode(): ArrayNodeDefinition
214212 ->scalarNode ('result_cache ' )->end ()
215213 ->end ();
216214
217- /** @phpstan-ignore class.notFound (Phpstan Symfony extension does not know yet how to deal with these) */
218215 $ replicaNode = $ connectionNode
219216 ->children ()
220217 ->arrayNode ('replicas ' )
@@ -232,7 +229,6 @@ private function getDbalConnectionsNode(): ArrayNodeDefinition
232229 */
233230 private function configureDbalDriverNode (ArrayNodeDefinition $ node ): void
234231 {
235- /** @phpstan-ignore class.notFound (Phpstan Symfony extension does not know yet how to deal with these) */
236232 $ node
237233 ->validate ()
238234 ->always (static function (array $ values ) {
@@ -288,7 +284,7 @@ private function configureDbalDriverNode(ArrayNodeDefinition $node): void
288284 ->end ()
289285 ->scalarNode ('default_dbname ' )
290286 ->info (
291- 'Override the default database (postgres) to connect to for PostgreSQL connexion . ' ,
287+ 'Override the default database (postgres) to connect to for PostgreSQL connection . ' ,
292288 )
293289 ->end ()
294290 ->scalarNode ('sslmode ' )
@@ -370,7 +366,6 @@ private function addOrmSection(ArrayNodeDefinition $node): void
370366 'controller_resolver ' => true ,
371367 ];
372368
373- /** @phpstan-ignore class.notFound (Phpstan Symfony extension does not know yet how to deal with these) */
374369 $ node
375370 ->children ()
376371 ->arrayNode ('orm ' )
@@ -518,7 +513,6 @@ private function getOrmEntityListenersNode(): NodeDefinition
518513 return ['entities ' => $ entities ];
519514 };
520515
521- /** @phpstan-ignore class.notFound (Phpstan Symfony extension does not know yet how to deal with these) */
522516 $ node
523517 ->beforeNormalization ()
524518 // Yaml normalization
@@ -564,7 +558,6 @@ private function getOrmEntityManagersNode(): ArrayNodeDefinition
564558 $ treeBuilder = new TreeBuilder ('entity_managers ' );
565559 $ node = $ treeBuilder ->getRootNode ();
566560
567- /** @phpstan-ignore class.notFound (Phpstan Symfony extension does not know yet how to deal with these) */
568561 $ node
569562 ->requiresAtLeastOneElement ()
570563 ->useAttributeAsKey ('name ' )
@@ -739,7 +732,6 @@ private function getOrmCacheDriverNode(string $name): ArrayNodeDefinition
739732 $ treeBuilder = new TreeBuilder ($ name );
740733 $ node = $ treeBuilder ->getRootNode ();
741734
742- /** @phpstan-ignore class.notFound (Phpstan Symfony extension does not know yet how to deal with these) */
743735 $ node
744736 ->beforeNormalization ()
745737 ->ifString ()
0 commit comments