Completed
Pull Request — master (#202)
by Ryan
05:06 queued 02:04
created
library/Requests/IDNAEncoder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -357,7 +357,7 @@
 block discarded – undo
357 357
 	 * @param int $delta
358 358
 	 * @param int $numpoints
359 359
 	 * @param bool $firsttime
360
-	 * @return int New bias
360
+	 * @return double New bias
361 361
 	 */
362 362
 	protected static function adapt($delta, $numpoints, $firsttime) {
363 363
 #	function adapt(delta,numpoints,firsttime):
Please login to merge, or discard this patch.
library/Requests/IRI.php 2 patches
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
 	 *
250 250
 	 * Returns false if $base is not absolute, otherwise an IRI.
251 251
 	 *
252
-	 * @param IRI|string $base (Absolute) Base IRI
252
+	 * @param string $base (Absolute) Base IRI
253 253
 	 * @param IRI|string $relative Relative IRI
254 254
 	 * @return IRI|false
255 255
 	 */
@@ -987,6 +987,7 @@  discard block
 block discarded – undo
987 987
 	 * Convert an IRI to a URI (or parts thereof)
988 988
 	 *
989 989
 	 * @param string|bool IRI to convert (or false from {@see get_iri})
990
+	 * @param false|string $string
990 991
 	 * @return string|false URI if IRI is valid, false otherwise.
991 992
 	 */
992 993
 	protected function to_uri($string) {
Please login to merge, or discard this patch.
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * IRI parser/serialiser/normaliser
4
- *
5
- * @package Requests
6
- * @subpackage Utilities
7
- */
3
+	 * IRI parser/serialiser/normaliser
4
+	 *
5
+	 * @package Requests
6
+	 * @subpackage Utilities
7
+	 */
8 8
 
9 9
 /**
10 10
  * IRI parser/serialiser/normaliser
Please login to merge, or discard this patch.
library/Requests/Session.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@
 block discarded – undo
232 232
 	 *
233 233
 	 * @param array $request Request data (same form as {@see request_multiple})
234 234
 	 * @param boolean $merge_options Should we merge options as well?
235
-	 * @return array Request data
235
+	 * @return string Request data
236 236
 	 */
237 237
 	protected function merge_request($request, $merge_options = true) {
238 238
 		if ($this->url !== null) {
Please login to merge, or discard this patch.
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Session handler for persistent requests and default parameters
4
- *
5
- * @package Requests
6
- * @subpackage Session Handler
7
- */
3
+	 * Session handler for persistent requests and default parameters
4
+	 *
5
+	 * @package Requests
6
+	 * @subpackage Session Handler
7
+	 */
8 8
 
9 9
 /**
10 10
  * Session handler for persistent requests and default parameters
Please login to merge, or discard this patch.
library/Requests/Response.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * HTTP response class
4
- *
5
- * Contains a response from Requests::request()
6
- * @package Requests
7
- */
3
+	 * HTTP response class
4
+	 *
5
+	 * Contains a response from Requests::request()
6
+	 * @package Requests
7
+	 */
8 8
 
9 9
 /**
10 10
  * HTTP response class
Please login to merge, or discard this patch.
library/Requests/Hooker.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Event dispatcher
4
- *
5
- * @package Requests
6
- * @subpackage Utilities
7
- */
3
+	 * Event dispatcher
4
+	 *
5
+	 * @package Requests
6
+	 * @subpackage Utilities
7
+	 */
8 8
 
9 9
 /**
10 10
  * Event dispatcher
Please login to merge, or discard this patch.
library/Requests/Exception.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Exception for HTTP requests
4
- *
5
- * @package Requests
6
- */
3
+	 * Exception for HTTP requests
4
+	 *
5
+	 * @package Requests
6
+	 */
7 7
 
8 8
 /**
9 9
  * Exception for HTTP requests
Please login to merge, or discard this patch.
library/Requests/Transport.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Base HTTP transport
4
- *
5
- * @package Requests
6
- * @subpackage Transport
7
- */
3
+	 * Base HTTP transport
4
+	 *
5
+	 * @package Requests
6
+	 * @subpackage Transport
7
+	 */
8 8
 
9 9
 /**
10 10
  * Base HTTP transport
Please login to merge, or discard this patch.
library/Requests/Transport/fsockopen.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * fsockopen HTTP transport
4
- *
5
- * @package Requests
6
- * @subpackage Transport
7
- */
3
+	 * fsockopen HTTP transport
4
+	 *
5
+	 * @package Requests
6
+	 * @subpackage Transport
7
+	 */
8 8
 
9 9
 /**
10 10
  * fsockopen HTTP transport
Please login to merge, or discard this patch.
library/Requests/Transport/cURL.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * cURL HTTP transport
4
- *
5
- * @package Requests
6
- * @subpackage Transport
7
- */
3
+	 * cURL HTTP transport
4
+	 *
5
+	 * @package Requests
6
+	 * @subpackage Transport
7
+	 */
8 8
 
9 9
 /**
10 10
  * cURL HTTP transport
Please login to merge, or discard this patch.