| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 18 | 
| Code Lines | 14 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 17 | #[Test]  | 
            ||
| 18 | public function itShouldCreateRdbmsSaga(): void  | 
            ||
| 19 |     { | 
            ||
| 20 | $saga = (new DoctrineDbalRdbmsSagaFactory())->createFromRow([  | 
            ||
| 21 | 'id' => '01K7Q14MMW2FQP2JS1RHQS7QXP',  | 
            ||
| 22 | 'sagaName' => 'some.saga',  | 
            ||
| 23 | 'sagaIds' => ['01K76G1PGKPZ047KDN25PFPEEV', '01K7Q13CG3A3PQCC98XYSE67K1'],  | 
            ||
| 24 |             'payload' => '{"some":"data"}', | 
            ||
| 25 | 'createdAt' => '2018-12-01 12:05:08.234543',  | 
            ||
| 26 | 'updatedAt' => null,  | 
            ||
| 27 | ]);  | 
            ||
| 28 | |||
| 29 |         self::assertSame('01K7Q14MMW2FQP2JS1RHQS7QXP', $saga->id); | 
            ||
| 30 |         self::assertSame('some.saga', $saga->sagaName); | 
            ||
| 31 | self::assertSame(['01K76G1PGKPZ047KDN25PFPEEV', '01K7Q13CG3A3PQCC98XYSE67K1'], $saga->sagaIds);  | 
            ||
| 32 |         self::assertSame('{"some":"data"}', $saga->payload); | 
            ||
| 33 |         self::assertEquals(new DateTimeImmutable('2018-12-01 12:05:08.234543'), $saga->createdAt); | 
            ||
| 34 | self::assertNull($saga->updatedAt);  | 
            ||
| 35 | }  | 
            ||
| 37 | 
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths