You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With PHP 8, we'll want to add a return type to the methods. Currently in getPhotos(), this is array|bool, but we could make it ?array, and return null instead of false.
It appears that returning false indicates some sort of error, though, so perhaps that's not the best approach.
The text was updated successfully, but these errors were encountered:
With PHP 8, we'll want to add a return type to the methods. Currently in getPhotos(), this is array|bool, but we could make it ?array, and return null instead of false.
It appears that returning false indicates some sort of error, though, so perhaps that's not the best approach.
The text was updated successfully, but these errors were encountered: