Completed
Push — master ( 61d60c...dbba03 )
by Cedric
01:42
created
Classes/Fal/FlysystemDriver.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.