Completed
Push — master ( bd1079...f277c1 )
by Stanislav
02:10
created
src/Application.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -105,6 +105,9 @@
 block discarded – undo
105 105
         return $this->weburgClient;
106 106
     }
107 107
 
108
+    /**
109
+     * @param WeburgClient $weburgClient
110
+     */
108 111
     public function setWeburgClient($weburgClient)
109 112
     {
110 113
         $this->weburgClient = $weburgClient;
Please login to merge, or discard this patch.
src/Config.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@
 block discarded – undo
58 58
         $this->config = $yaml + $this->config;
59 59
     }
60 60
 
61
+    /**
62
+     * @param string $configFile
63
+     */
61 64
     public function saveConfigFile($configFile = null)
62 65
     {
63 66
         if (!isset($configFile)) {
Please login to merge, or discard this patch.
src/Command/TorrentClean.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
             return 1;
38 38
         }
39 39
 
40
-        $blackTorrentList = array_filter($torrentList, function ($torrent) use ($blacklist) {
40
+        $blackTorrentList = array_filter($torrentList, function($torrent) use ($blacklist) {
41 41
             return in_array($torrent[Torrent\Get::NAME], $blacklist);
42 42
         });
43 43
 
Please login to merge, or discard this patch.