| @@ -2,9 +2,7 @@ | ||
| 2 | 2 | |
| 3 | 3 | namespace CedricZiel\FalFlysystem\Fal; | 
| 4 | 4 | |
| 5 | -use League\Flysystem\Adapter\Local; | |
| 6 | 5 | use League\Flysystem\AdapterInterface; | 
| 7 | -use League\Flysystem\Config; | |
| 8 | 6 | use League\Flysystem\FilesystemInterface; | 
| 9 | 7 | use TYPO3\CMS\Core\Resource\Driver\AbstractHierarchicalFilesystemDriver; | 
| 10 | 8 | use TYPO3\CMS\Core\Resource\ResourceStorage; | 
| @@ -353,7 +353,7 @@ discard block | ||
| 353 | 353 | * | 
| 354 | 354 | * @param string $fileIdentifier | 
| 355 | 355 | * @param string $localFilePath | 
| 356 | - * @return bool TRUE if the operation succeeded | |
| 356 | + * @return boolean|null TRUE if the operation succeeded | |
| 357 | 357 | */ | 
| 358 | 358 | public function replaceFile($fileIdentifier, $localFilePath) | 
| 359 | 359 |      { | 
| @@ -440,7 +440,7 @@ discard block | ||
| 440 | 440 | * @param string $sourceFolderIdentifier | 
| 441 | 441 | * @param string $targetFolderIdentifier | 
| 442 | 442 | * @param string $newFolderName | 
| 443 | - * @return bool | |
| 443 | + * @return boolean|null | |
| 444 | 444 | */ | 
| 445 | 445 | public function copyFolderWithinStorage($sourceFolderIdentifier, $targetFolderIdentifier, $newFolderName) | 
| 446 | 446 |      { | 
| @@ -586,7 +586,7 @@ discard block | ||
| 586 | 586 | * Returns information about a file. | 
| 587 | 587 | * | 
| 588 | 588 | * @param string $fileIdentifier | 
| 589 | - * @param array $propertiesToExtract Array of properties which are be extracted | |
| 589 | + * @param string[] $propertiesToExtract Array of properties which are be extracted | |
| 590 | 590 | * If empty all will be extracted | 
| 591 | 591 | * @return array | 
| 592 | 592 | * @throws FileDoesNotExistException |