flownative / flow-aws-s3

Amazon S3 adaptor for Neos and Flow
MIT License
18 stars 33 forks source link

Fix return type in S3Storage #61

Closed kdambekalns closed 1 year ago

kdambekalns commented 1 year ago

Two places declared bool as return type, but it actually needs to be bool|resource.

Since that is not allowed in PHP 7, but the package is compatible with Flow 6.3 & 7.x, this removes the return type completely.

Fixes #60