Completed
Push — master ( 5f640f...f30f41 )
by Pierre-Henry
34:09
created
_protected/vendor/composer/ClassLoader.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -341,6 +341,10 @@
 block discarded – undo
341 341
         return $file;
342 342
     }
343 343
 
344
+    /**
345
+     * @param string $class
346
+     * @param string $ext
347
+     */
344 348
     private function findFileWithExtension($class, $ext)
345 349
     {
346 350
         // PSR-4 lookup
Please login to merge, or discard this patch.
_protected/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -115,6 +115,9 @@  discard block
 block discarded – undo
115 115
         return $this->resolveDataPointer($pointer);
116 116
     }
117 117
 
118
+    /**
119
+     * @param string $ipAddress
120
+     */
118 121
     private function findAddressInTree($ipAddress)
119 122
     {
120 123
         // XXX - could simplify. Done as a byte array to ease porting
@@ -146,6 +149,9 @@  discard block
 block discarded – undo
146 149
     }
147 150
 
148 151
 
152
+    /**
153
+     * @param integer $length
154
+     */
149 155
     private function startNode($length)
150 156
     {
151 157
         // Check if we are looking up an IPv4 address in an IPv6 tree. If this
@@ -178,6 +184,9 @@  discard block
 block discarded – undo
178 184
         return $node;
179 185
     }
180 186
 
187
+    /**
188
+     * @param integer $index
189
+     */
181 190
     private function readNode($nodeNumber, $index)
182 191
     {
183 192
         $baseOffset = $nodeNumber * $this->metadata->nodeByteSize;
@@ -230,6 +239,10 @@  discard block
 block discarded – undo
230 239
      * are much faster algorithms (e.g., Boyer-Moore) for this if speed is ever
231 240
      * an issue, but I suspect it won't be.
232 241
      */
242
+
243
+    /**
244
+     * @param string $filename
245
+     */
233 246
     private function findMetadataStart($filename)
234 247
     {
235 248
         $handle = $this->fileHandle;
Please login to merge, or discard this patch.
_protected/vendor/maxmind-db/reader/tests/MaxMind/Db/Test/ReaderTest.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -276,6 +276,11 @@  discard block
 block discarded – undo
276 276
         $reader->metadata();
277 277
     }
278 278
 
279
+    /**
280
+     * @param Reader $reader
281
+     * @param integer $ipVersion
282
+     * @param integer $recordSize
283
+     */
279 284
     private function checkMetadata($reader, $ipVersion, $recordSize)
280 285
     {
281 286
         $metadata = $reader->metadata();
@@ -303,6 +308,9 @@  discard block
 block discarded – undo
303 308
         $this->assertGreaterThan(200, $metadata->searchTreeSize);
304 309
     }
305 310
 
311
+    /**
312
+     * @param string $fileName
313
+     */
306 314
     private function checkIpV4(Reader $reader, $fileName)
307 315
     {
308 316
         for ($i = 0; $i <= 5; $i++) {
@@ -341,6 +349,10 @@  discard block
 block discarded – undo
341 349
     }
342 350
 
343 351
     // XXX - logic could be combined with above
352
+
353
+    /**
354
+     * @param string $fileName
355
+     */
344 356
     private function checkIpV6(Reader $reader, $fileName)
345 357
     {
346 358
         $subnets = array('::1:ffff:ffff', '::2:0:0',
Please login to merge, or discard this patch.
vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     }
26 26
 
27 27
     /**
28
-     * @param $body
28
+     * @param string $body
29 29
      * @return array
30 30
      */
31 31
     public function post($body)
@@ -82,6 +82,9 @@  discard block
 block discarded – undo
82 82
         return $curl;
83 83
     }
84 84
 
85
+    /**
86
+     * @param resource $curl
87
+     */
85 88
     private function execute($curl)
86 89
     {
87 90
         $body = curl_exec($curl);
Please login to merge, or discard this patch.
_protected/vendor/stripe/stripe-php/lib/ApiRequestor.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -10,6 +10,9 @@  discard block
 block discarded – undo
10 10
 
11 11
     private static $_httpClient;
12 12
 
13
+    /**
14
+     * @param string $apiBase
15
+     */
13 16
     public function __construct($apiKey = null, $apiBase = null)
14 17
     {
15 18
         $this->_apiKey = $apiKey;
@@ -112,6 +115,10 @@  discard block
 block discarded – undo
112 115
         }
113 116
     }
114 117
 
118
+    /**
119
+     * @param string $method
120
+     * @param string $url
121
+     */
115 122
     private function _requestRaw($method, $url, $params, $headers)
116 123
     {
117 124
         $myApiKey = $this->_apiKey;
@@ -180,6 +187,10 @@  discard block
 block discarded – undo
180 187
         return array($rbody, $rcode, $rheaders, $myApiKey);
181 188
     }
182 189
 
190
+    /**
191
+     * @param resource $resource
192
+     * @param boolean $hasCurlFile
193
+     */
183 194
     private function _processResourceParam($resource, $hasCurlFile)
184 195
     {
185 196
         if (get_resource_type($resource) !== 'stream') {
Please login to merge, or discard this patch.
_protected/vendor/stripe/stripe-php/lib/ApiResource.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -93,6 +93,9 @@  discard block
 block discarded – undo
93 93
         }
94 94
     }
95 95
 
96
+    /**
97
+     * @param string $method
98
+     */
96 99
     protected function _request($method, $url, $params = array(), $options = null)
97 100
     {
98 101
         $opts = $this->_opts->merge($options);
@@ -114,6 +117,9 @@  discard block
 block discarded – undo
114 117
         return array($response, $opts);
115 118
     }
116 119
 
120
+    /**
121
+     * @param string|null $id
122
+     */
117 123
     protected static function _retrieve($id, $options = null)
118 124
     {
119 125
         $opts = Util\RequestOptions::parse($options);
Please login to merge, or discard this patch.
_protected/vendor/stripe/stripe-php/lib/Customer.php 1 patch
Doc Comments   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param array|null $params
31
-     * @param array|string|null $opts
31
+     * @param string $opts
32 32
      *
33 33
      * @return Customer The created customer.
34 34
      */
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * @param array|null $params
78 78
      *
79
-     * @return array An array of the customer's Invoices.
79
+     * @return Collection An array of the customer's Invoices.
80 80
      */
81 81
     public function invoices($params = null)
82 82
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * @param array|null $params
93 93
      *
94
-     * @return array An array of the customer's InvoiceItems.
94
+     * @return Collection An array of the customer's InvoiceItems.
95 95
      */
96 96
     public function invoiceItems($params = null)
97 97
     {
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
     /**
107 107
      * @param array|null $params
108 108
      *
109
-     * @return array An array of the customer's Charges.
109
+     * @return Collection An array of the customer's Charges.
110 110
      */
111 111
     public function charges($params = null)
112 112
     {
@@ -145,7 +145,6 @@  discard block
 block discarded – undo
145 145
     }
146 146
 
147 147
     /**
148
-     * @param array|null $params
149 148
      *
150 149
      * @return Customer The updated customer.
151 150
      */
Please login to merge, or discard this patch.
_protected/vendor/stripe/stripe-php/lib/Dispute.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,6 @@
 block discarded – undo
37 37
     }
38 38
 
39 39
     /**
40
-     * @param array|null $params
41 40
      * @param array|string|null $options
42 41
      *
43 42
      * @return Dispute The closed dispute.
Please login to merge, or discard this patch.
_protected/vendor/stripe/stripe-php/lib/Error/Base.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
45 45
         return $this->httpHeaders;
46 46
     }
47 47
 
48
+    /**
49
+     * @return string
50
+     */
48 51
     public function getRequestId()
49 52
     {
50 53
         return $this->requestId;
Please login to merge, or discard this patch.