| 1 | <?php |
||
| 12 | abstract class BaseInput implements IdentityInputInterface |
||
| 13 | { |
||
| 14 | protected $file_path; |
||
| 15 | |||
| 16 | public function setFilePath(string $path): IdentityInputInterface |
||
| 21 | |||
| 22 | public function getFileName(): string |
||
| 26 | |||
| 27 | public function getFileContents() |
||
| 31 | |||
| 32 | abstract public function toArray(); |
||
| 33 | } |
||
| 34 |