Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function addFixture(string $fixtureName) |
||
28 | { |
||
29 | $fixturePath = sprintf('%s%s.%s', $this->fixtureSourceDir, $fixtureName, self::FIXTURES_EXT); |
||
30 | |||
31 | if (!file_exists($fixturePath)) { |
||
32 | throw new \Exception("Fixture path not found: {$fixturePath}"); |
||
33 | } |
||
34 | |||
35 | $this->fixturesPaths[] = $fixturePath; |
||
36 | } |
||
37 | |||
46 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.