Completed
Push — master ( ee378a...71008e )
by Stanislav
02:40
created
src/WeburgClient.php 1 patch
Doc Comments   +8 added lines, -5 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     }
121 121
 
122 122
     /**
123
-     * @param $url
123
+     * @param string $url
124 124
      * @param array $headers
125 125
      * @return \Psr\Http\Message\StreamInterface
126 126
      * @throws \RuntimeException
@@ -175,6 +175,9 @@  discard block
 block discarded – undo
175 175
         . 'obj_id=' . $movieId;
176 176
     }
177 177
 
178
+    /**
179
+     * @param string $body
180
+     */
178 181
     private function getMovieInfo($body)
179 182
     {
180 183
         $info = [];
@@ -199,9 +202,9 @@  discard block
 block discarded – undo
199 202
     }
200 203
 
201 204
     /**
202
-     * @param $body
203
-     * @param $fromTimestamp
204
-     * @return bool|string date if matched, false if not
205
+     * @param \Psr\Http\Message\StreamInterface $body
206
+     * @param integer $fromTimestamp
207
+     * @return false|string date if matched, false if not
205 208
      */
206 209
     private function checkTorrentDate($body, $fromTimestamp)
207 210
     {
@@ -222,7 +225,7 @@  discard block
 block discarded – undo
222 225
     }
223 226
 
224 227
     /**
225
-     * @param $body
228
+     * @param \Psr\Http\Message\StreamInterface $body
226 229
      * @return array
227 230
      */
228 231
     private function getTorrentsUrls($body)
Please login to merge, or discard this patch.