Completed
Push — master ( 738ba0...8b90c1 )
by Dorian
01:21
created
vendor-patches/YoutubeDl/YoutubeDl.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -167,6 +167,9 @@
 block discarded – undo
167 167
         return array_filter(explode("\n", $process->getOutput()));
168 168
     }
169 169
 
170
+    /**
171
+     * @param string $data
172
+     */
170 173
     private function jsonDecode($data): array
171 174
     {
172 175
         $decoded = json_decode($data, true);
Please login to merge, or discard this patch.
src/Platform/YouTube/FilesystemManager.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
     /**
55 55
      * {@inheritdoc}
56
-     * @param \App\Platform\YouTube\Download[]|\App\Domain\Collection $downloads
56
+     * @param Collection $downloads
57 57
      *
58 58
      * @throws \RuntimeException
59 59
      */
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
      * Checks if a folder (or one of its parent, up to the $limit parameter) is found in the collection of folders.
115 115
      *
116 116
      * @param \SplFileInfo $folderToSearchFor
117
-     * @param \SplFileInfo[]|\App\Domain\Collection $folders
117
+     * @param Collection $folders
118 118
      * @param bool $loopOverParentsFolders
119 119
      * @param Path $untilPath
120 120
      *
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
     }
154 154
 
155 155
     /**
156
-     * @param \SplFileInfo[]|\App\Domain\Collection $foldersToRemove
156
+     * @param Collection $foldersToRemove
157 157
      * @param \App\Domain\Path $downloadPath
158 158
      *
159 159
      * @return bool Whether folders were removed or not.
Please login to merge, or discard this patch.