| 1 | <?php |
||
| 8 | class InputFile |
||
| 9 | { |
||
| 10 | const DEFAULT_MAX_SIZE = 50; |
||
| 11 | |||
| 12 | protected $maxSize = self::DEFAULT_MAX_SIZE; |
||
| 13 | |||
| 14 | protected $file; |
||
| 15 | |||
| 16 | public function __construct($file) |
||
| 20 | |||
| 21 | protected function initFileForUpload() |
||
| 29 | |||
| 30 | protected function isFileReadable($file) |
||
| 34 | |||
| 35 | protected function isFileId($file) |
||
| 39 | |||
| 40 | public function getFileForUpload() |
||
| 56 | } |
||
| 57 |