| 1 | <?php |
||
| 15 | class XlsxFileReader extends FileIteratorReader |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | * |
||
| 20 | * @Assert\NotBlank(groups={"Execution"}) |
||
| 21 | * @AssertFile( |
||
| 22 | * groups={"Execution"}, |
||
| 23 | * allowedExtensions={"xlsx", "xlsm", "csv"}, |
||
| 24 | * ) |
||
| 25 | */ |
||
| 26 | protected $filePath; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | public function getUploadedFileConstraints() |
||
| 42 | } |
||
| 43 |