Completed
Push — master ( 8fdee6...9193e0 )
by Cedric
03:00
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
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
      *
284 284
      * @param string $fileIdentifier
285 285
      * @param string $localFilePath
286
-     * @return bool TRUE if the operation succeeded
286
+     * @return boolean|null TRUE if the operation succeeded
287 287
      */
288 288
     public function replaceFile($fileIdentifier, $localFilePath)
289 289
     {
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
      * @param string $sourceFolderIdentifier
354 354
      * @param string $targetFolderIdentifier
355 355
      * @param string $newFolderName
356
-     * @return bool
356
+     * @return boolean|null
357 357
      */
358 358
     public function copyFolderWithinStorage($sourceFolderIdentifier, $targetFolderIdentifier, $newFolderName)
359 359
     {
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
      *
394 394
      * @param string $fileName
395 395
      * @param string $folderIdentifier
396
-     * @return bool
396
+     * @return boolean|null
397 397
      */
398 398
     public function fileExistsInFolder($fileName, $folderIdentifier)
399 399
     {
Please login to merge, or discard this patch.