MaxServ / t3ext-fal_s3

S3 driver for FAL
GNU General Public License v2.0
13 stars 10 forks source link

Coalesce operator is only available in PHP 7+ #12

Closed Tuurlijk closed 7 years ago

Tuurlijk commented 7 years ago

http://php.net/manual/en/migration70.new-features.php#migration70\2e new-features\2e null-coalesce-op

\MaxServ\FalS3\Driver\AmazonS3Driver::resolveFolderEntries() has a line using the coalesce operator, which is not available for all php versions.

$excludedFolders = isset($this->configuration['excludedFolders']) ? $this->configuration['excludedFolders'] : [];

Should be used here instead of the current:

$excludedFolders = $this->configuration['excludedFolders'] ?? [];