Completed
Pull Request — master (#122)
by Alex
03:03
created
Protocol/Parser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -324,7 +324,7 @@
 block discarded – undo
324 324
      * Looks for an attribute value under different possible names.
325 325
      *
326 326
      * @param \SimpleXMLElement $element
327
-     * @param array             $names
327
+     * @param string[]             $names
328 328
      *
329 329
      * @return null|string|void
330 330
      */
Please login to merge, or discard this patch.
Protocol/FeedReader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
     /**
185 185
      * Read the XML stream hosted at $url.
186 186
      *
187
-     * @param $url
187
+     * @param string $url
188 188
      * @param \Datetime $modifiedSince
189 189
      *
190 190
      * @return HttpDriverResponse
Please login to merge, or discard this patch.
Controller/StreamController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
     }
119 119
 
120 120
     /**
121
-     * @param $feed
121
+     * @param FeedOutInterface $feed
122 122
      * @param $format
123 123
      * @return string
124 124
      * @throws \Exception
Please login to merge, or discard this patch.
Protocol/Parser/RssParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
     /**
105 105
      * @param SimpleXMLElement $xmlBody
106 106
      * @param FeedInterface    $feed
107
-     * @param $latestItemDate
107
+     * @param \DateTime $latestItemDate
108 108
      */
109 109
     protected function detectAndSetLastModified(SimpleXMLElement $xmlBody, FeedInterface $feed, $latestItemDate)
110 110
     {
Please login to merge, or discard this patch.