FriendsOfCake / cakephp-upload

CakePHP: Handle file uploading sans ridiculous automagic
https://cakephp-upload.readthedocs.io/
MIT License
551 stars 255 forks source link

[cake-4.x] Fixing validators to use UploadedFileInterface #534

Closed challgren closed 4 years ago

challgren commented 4 years ago

In CakePHP 4.x the file is now wrapped in an UploadedFileInterface when doing validation checks they currently fail due to array access on an object. This PR corrects it to use the UploadedFileInterface and fall back to the array style.