| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class CsvFileWriterFactory extends AbstractFactory |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @inheritdoc |
||
| 20 | */ |
||
| 21 | protected function configureValidator() |
||
| 22 | { |
||
| 23 | return new Assert\Collection([ |
||
| 24 | 'file' => new Assert\NotBlank(), |
||
| 25 | ]); |
||
| 26 | } |
||
| 27 | |||
| 28 | |||
| 29 | /** |
||
| 30 | * @inheritdoc |
||
| 31 | */ |
||
| 32 | protected function build($operation, $options) |
||
| 35 | } |
||
| 36 | } |
||
| 37 |