X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;ds=sidebyside;f=includes%2Fhttp%2FHttp.php;h=c29f1999e28e3ceffad07579b009a9dd16a8e271;hb=de8ea9e67b1e8c2dc220cf38972f0ac5d1269971;hp=c0005c5ae5500d86b082aeeac4f3bd8c264e7ef5;hpb=e946bd1432e935dbf77b12dbcf7379ae32d4661c;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/http/Http.php b/includes/http/Http.php index c0005c5ae5..c29f1999e2 100644 --- a/includes/http/Http.php +++ b/includes/http/Http.php @@ -25,7 +25,7 @@ use MediaWiki\Logger\LoggerFactory; * @ingroup HTTP */ class Http { - static public $httpEngine = false; + public static $httpEngine = false; /** * Perform an HTTP request @@ -58,7 +58,7 @@ class Http { * @param string $caller The method making this request, for profiling * @return string|bool (bool)false on failure or a string on success */ - public static function request( $method, $url, $options = [], $caller = __METHOD__ ) { + public static function request( $method, $url, array $options = [], $caller = __METHOD__ ) { $logger = LoggerFactory::getInstance( 'http' ); $logger->debug( "$method: $url" ); @@ -95,7 +95,7 @@ class Http { * @param string $caller The method making this request, for profiling * @return string|bool false on error */ - public static function get( $url, $options = [], $caller = __METHOD__ ) { + public static function get( $url, array $options = [], $caller = __METHOD__ ) { $args = func_get_args(); if ( isset( $args[1] ) && ( is_string( $args[1] ) || is_numeric( $args[1] ) ) ) { // Second was used to be the timeout @@ -118,7 +118,7 @@ class Http { * @param string $caller The method making this request, for profiling * @return string|bool false on error */ - public static function post( $url, $options = [], $caller = __METHOD__ ) { + public static function post( $url, array $options = [], $caller = __METHOD__ ) { return self::request( 'POST', $url, $options, $caller ); } @@ -170,7 +170,7 @@ class Http { * @param array $options * @return MultiHttpClient */ - public static function createMultiClient( $options = [] ) { + public static function createMultiClient( array $options = [] ) { global $wgHTTPConnectTimeout, $wgHTTPTimeout, $wgHTTPProxy; return new MultiHttpClient( $options + [