Completed
Push — develop ( 8f34f3...3bf98d )
by Jaap
13:27 queued 03:31
created
src/Application/Renderer/Template/Action/CopyFileHandler.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     /**
41 41
      * @param CopyFile $action
42 42
      *
43
-     * @return Asset
43
+     * @return Asset[]
44 44
      */
45 45
     private function fetchAsset(CopyFile $action, Path $source)
46 46
     {
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     /**
51 51
      * @param CopyFile $action
52
-     * @param Asset|Folder $asset
52
+     * @param Asset[] $asset
53 53
      * @param Path $location
54 54
      *
55 55
      * @return void
Please login to merge, or discard this patch.
src/Infrastructure/Renderer/FlySystemAssets.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     private $filesystem;
29 29
 
30 30
     /**
31
-     * @param FilesystemInterface|MountManager $filesystem
31
+     * @param \Mockery\MockInterface $filesystem
32 32
      */
33 33
     public function __construct($filesystem)
34 34
     {
Please login to merge, or discard this patch.
tests/unit/Infrastructure/Renderer/FlySystemAssetsTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,7 @@
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Infrastructure\Renderer;
14 14
 
15
-use League\Flysystem\AdapterInterface;
16 15
 use League\Flysystem\File;
17
-use League\Flysystem\Filesystem;
18 16
 use League\Flysystem\FilesystemInterface;
19 17
 use Mockery as m;
20 18
 use phpDocumentor\DomainModel\Path;
Please login to merge, or discard this patch.
tests/unit/Application/Renderer/Template/Action/CopyFileHandlerTest.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -144,9 +144,9 @@
 block discarded – undo
144 144
     }
145 145
 
146 146
     /**
147
-     * @param $renderContext
148
-     * @param $source
149
-     * @param $destination
147
+     * @param RenderContext $renderContext
148
+     * @param string $source
149
+     * @param string $destination
150 150
      *
151 151
      * @return static
152 152
      */
Please login to merge, or discard this patch.