Completed
Push — master ( a39d9e...ae61e8 )
by Cedric
02:49
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
@@ -319,7 +319,7 @@  discard block
 block discarded – undo
319 319
      * @param string $fileIdentifier
320 320
      * @param string $targetFolderIdentifier
321 321
      * @param string $fileName
322
-     * @return string the Identifier of the new file
322
+     * @return boolean the Identifier of the new file
323 323
      */
324 324
     public function copyFileWithinStorage($fileIdentifier, $targetFolderIdentifier, $fileName)
325 325
     {
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
      *
368 368
      * @param string $fileIdentifier
369 369
      * @param string $localFilePath
370
-     * @return bool TRUE if the operation succeeded
370
+     * @return boolean|null TRUE if the operation succeeded
371 371
      */
372 372
     public function replaceFile($fileIdentifier, $localFilePath)
373 373
     {
@@ -603,7 +603,7 @@  discard block
 block discarded – undo
603 603
      * Returns information about a file.
604 604
      *
605 605
      * @param string $fileIdentifier
606
-     * @param array $propertiesToExtract Array of properties which are be extracted
606
+     * @param string[] $propertiesToExtract Array of properties which are be extracted
607 607
      *                                   If empty all will be extracted
608 608
      * @return array
609 609
      * @throws FileDoesNotExistException
Please login to merge, or discard this patch.