1010use Neo4j \QueryAPI \OGM ;
1111use PHPUnit \Framework \Attributes \DataProvider ;
1212use PHPUnit \Framework \TestCase ;
13-
13+ /** @psalm-suppress UnusedClass */
1414class Neo4jOGMTest extends TestCase
1515{
1616 private OGM $ ogm ;
@@ -374,7 +374,7 @@ public function testWithPath()
374374 $ this ->assertEquals ('A ' , $ path ->getNodes ()[0 ]->getProperties ()['name ' ]['_value ' ]);
375375 $ this ->assertEquals ('B ' , $ path ->getNodes ()[1 ]->getProperties ()['name ' ]['_value ' ]);
376376 }
377-
377+ /** @psalm-suppress PossiblyUnusedParam */
378378 #[DataProvider('integerDataProvider ' )] public function testWithInteger (string $ query , array $ parameters , int $ expectedResult ): void
379379 {
380380 $ actual = $ this ->ogm ->map ([
@@ -387,7 +387,7 @@ public function testWithPath()
387387
388388
389389
390-
390+ /** @psalm-suppress PossiblyUnusedParam */
391391
392392 #[DataProvider('nullDataProvider ' )]
393393 public function testWithNull (string $ query , array $ parameters , ?string $ expectedResult ): void
@@ -398,7 +398,7 @@ public function testWithNull(string $query, array $parameters, ?string $expected
398398 ]);
399399 $ this ->assertEquals ($ expectedResult , $ actual );
400400 }
401-
401+ /** @psalm-suppress PossiblyUnusedParam */
402402 #[DataProvider('booleanDataProvider ' )]
403403 public function testWithBoolean (string $ query , array $ parameters , ?bool $ expectedResult ): void
404404 {
@@ -408,7 +408,7 @@ public function testWithBoolean(string $query, array $parameters, ?bool $expecte
408408 ]);
409409 $ this ->assertEquals ($ expectedResult , $ actual );
410410 }
411-
411+ /** @psalm-suppress PossiblyUnusedParam */
412412 #[DataProvider('stringDataProvider ' )]
413413 public function testWithString (string $ query , array $ parameters , ?string $ expectedResult ): void
414414 {
0 commit comments