We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if yes im wondering if can return empty array if there is no elements inside $_FILES instead of null
I'd like to propose for line 492: return is_array($this->files->all())?$this->files->all():[];
return is_array($this->files->all())?$this->files->all():[];
The text was updated successfully, but these errors were encountered:
After some investigation better place to make changes I think is populateFiles method of class FileCollection.
Sorry, something went wrong.
To fix another issue earlier today, the returned value is now the FileCollection itself, which has some additional tools to work with.
No branches or pull requests
if yes im wondering if can return empty array if there is no elements inside $_FILES instead of null
I'd like to propose for line 492:
return is_array($this->files->all())?$this->files->all():[];
The text was updated successfully, but these errors were encountered: