Closed Tuurlijk closed 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.
\MaxServ\FalS3\Driver\AmazonS3Driver::resolveFolderEntries()
$excludedFolders = isset($this->configuration['excludedFolders']) ? $this->configuration['excludedFolders'] : [];
Should be used here instead of the current:
$excludedFolders = $this->configuration['excludedFolders'] ?? [];
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.Should be used here instead of the current: