| 1 | <?php |
||
| 10 | class FileReportList |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var FileReport[] |
||
| 14 | */ |
||
| 15 | private $fileReports = []; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param FileReport $fileReport |
||
| 19 | */ |
||
| 20 | public function addFileReport(FileReport $fileReport) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return FileReport[] |
||
| 27 | */ |
||
| 28 | public function getFileReports() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return bool |
||
| 35 | */ |
||
| 36 | public function hasMagicNumbers() |
||
| 46 | } |
||
| 47 |