| 1 | <?php |
||
| 5 | class FixturesLoader extends LoadData |
||
| 6 | { |
||
| 7 | const FIXTURES_EXT = 'yml'; |
||
| 8 | |||
| 9 | /** @var array */ |
||
| 10 | private $fixturesPaths = []; |
||
| 11 | |||
| 12 | /** @var string */ |
||
| 13 | private $fixtureSourceDir; |
||
| 14 | |||
| 15 | public function __construct($dir = null) |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param string $fixtureName |
||
| 23 | * @param string:null $dir |
||
| 24 | * |
||
| 25 | * @throws \Exception |
||
| 26 | */ |
||
| 27 | public function addFixture(string $fixtureName) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @inheritdoc |
||
| 40 | */ |
||
| 41 | protected function getFixtures() |
||
| 45 | } |
||
| 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.