| 1 | <?php |
||
| 7 | class FileUploadInfo extends Model |
||
| 8 | { |
||
| 9 | protected function __construct(array $data) |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @return FileInfos |
||
| 19 | */ |
||
| 20 | public function getFileInfos(): FileInfos |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return string[] |
||
| 27 | */ |
||
| 28 | public function getClientIds(): array |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | protected static function getFields() |
||
| 43 | } |
||
| 44 |
This check looks for access to methods that are not accessible from the current context.
If you need to make a method accessible to another context you can raise its visibility level in the defining class.