Skip to content

Commit

Permalink
Fix deprecation issue in php 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Sophia Fuhrmann committed Dec 22, 2023
1 parent d9c2ec7 commit c69f7c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/Driver/StorageDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ public function getFilesInFolder($folderIdentifier, $start = 0, $numberOfItems =
/**
* {@inheritdoc}
*/
protected function getDirectoryItemList($folderIdentifier, $start = 0, $numberOfItems = 0, array $filterMethods, $includeFiles = true, $includeDirs = true, $recursive = false, $sort = '', $sortRev = false)
protected function getDirectoryItemList($folderIdentifier, int $start, int $numberOfItems, array $filterMethods, $includeFiles = true, $includeDirs = true, $recursive = false, $sort = '', $sortRev = false)
{
$folders = [];
try {
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
'title' => 'Google Cloud Storage FAL Driver',
'description' => 'Google Cloud Storage FAL driver for TYPO3. Files can be stored in the GCS buckets.',
'category' => 'be',
'version' => '1.0.18',
'version' => '1.0.19',
'state' => 'stable',
'clearcacheonload' => 1,
'author' => 'Pierre Geyer',
Expand Down

0 comments on commit c69f7c2

Please sign in to comment.