Completed
Push — master ( 612ab5...954270 )
by Auke
02:57 queued 01:02
created
src/http.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * Send a HTTP request with a specific method, GET, POST, etc.
23
-     * @param null  $method The method to use, GET, POST, etc.
23
+     * @param string  $method The method to use, GET, POST, etc.
24 24
      * @param null  $url    The URL to request
25 25
      * @param null  $query  The query string
26 26
      * @param array $options    Any of the HTTP stream context options, e.g. extra headers.
Please login to merge, or discard this patch.
src/url/Url.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,6 +34,7 @@  discard block
 block discarded – undo
34 34
     /**
35 35
      *	@param string $url The URL to parse, the query part will remain a string.
36 36
      *  @param QueryInterface queryObject Optional. An object that parses the query string.
37
+     * @param Query $queryObject
37 38
      */
38 39
     public function __construct($url, $queryObject = null)
39 40
     {
@@ -116,7 +117,7 @@  discard block
 block discarded – undo
116 117
 
117 118
     /**
118 119
      * @param $components
119
-     * @param $validComponents
120
+     * @param string[] $validComponents
120 121
      */
121 122
     private function importUrlComponents($components, $validComponents)
122 123
     {
Please login to merge, or discard this patch.
src/http/headers.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     /**
65 65
      * Return the last value sent for a specific header, uses the output of parse().
66 66
      * @param (mixed) $headers An array with multiple header strings or a single string.
67
-     * @return array|mixed
67
+     * @return string
68 68
      */
69 69
     private static function getLastHeader($headers) {
70 70
         if ( is_array($headers) ) {
@@ -112,6 +112,9 @@  discard block
 block discarded – undo
112 112
         return $result;
113 113
     }
114 114
 
115
+    /**
116
+     * @param boolean $private
117
+     */
115 118
     private static function getCacheControlTime( $header, $private )
116 119
     {
117 120
         $result = null;
Please login to merge, or discard this patch.