| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 16 | 
| Code Lines | 12 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 17 | #[Test] | ||
| 18 | public function itShouldCreateRdbmsSaga(): void | ||
| 19 |     { | ||
| 20 | $saga = (new DoctrineDbalRdbmsSagaFactory())->createFromRow([ | ||
| 21 | 'sagaName' => 'some.saga', | ||
| 22 | 'sagaId' => '01K76G1PGKPZ047KDN25PFPEEV', | ||
| 23 |             'payload' => '{"some":"data"}', | ||
| 24 | 'createdAt' => '2018-12-01 12:05:08.234543', | ||
| 25 | 'updatedAt' => null, | ||
| 26 | ]); | ||
| 27 | |||
| 28 |         self::assertSame('some.saga', $saga->sagaName); | ||
| 29 |         self::assertSame('01K76G1PGKPZ047KDN25PFPEEV', $saga->sagaId); | ||
| 30 |         self::assertSame('{"some":"data"}', $saga->payload); | ||
| 31 |         self::assertEquals(new DateTimeImmutable('2018-12-01 12:05:08.234543'), $saga->createdAt); | ||
| 32 | self::assertNull($saga->updatedAt); | ||
| 33 | } | ||
| 35 | 
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