Merge "Http::getProxy() method to get proxy configuration"
[lhc/web/wiklou.git] / includes / parser / CoreTagHooks.php
index 9755ea9..d4c4f6d 100644 (file)
@@ -32,12 +32,12 @@ class CoreTagHooks {
         */
        public static function register( $parser ) {
                global $wgRawHtml;
-               $parser->setHook( 'pre', array( __CLASS__, 'pre' ) );
-               $parser->setHook( 'nowiki', array( __CLASS__, 'nowiki' ) );
-               $parser->setHook( 'gallery', array( __CLASS__, 'gallery' ) );
-               $parser->setHook( 'indicator', array( __CLASS__, 'indicator' ) );
+               $parser->setHook( 'pre', [ __CLASS__, 'pre' ] );
+               $parser->setHook( 'nowiki', [ __CLASS__, 'nowiki' ] );
+               $parser->setHook( 'gallery', [ __CLASS__, 'gallery' ] );
+               $parser->setHook( 'indicator', [ __CLASS__, 'indicator' ] );
                if ( $wgRawHtml ) {
-                       $parser->setHook( 'html', array( __CLASS__, 'html' ) );
+                       $parser->setHook( 'html', [ __CLASS__, 'html' ] );
                }
        }
 
@@ -79,7 +79,7 @@ class CoreTagHooks {
        public static function html( $content, $attributes, $parser ) {
                global $wgRawHtml;
                if ( $wgRawHtml ) {
-                       return array( $content, 'markerType' => 'nowiki' );
+                       return [ $content, 'markerType' => 'nowiki' ];
                } else {
                        throw new MWException( '<html> extension tag encountered unexpectedly' );
                }
@@ -98,8 +98,8 @@ class CoreTagHooks {
         * @return array
         */
        public static function nowiki( $content, $attributes, $parser ) {
-               $content = strtr( $content, array( '-{' => '-&#123;', '}-' => '&#125;-' ) );
-               return array( Xml::escapeTagsOnly( $content ), 'markerType' => 'nowiki' );
+               $content = strtr( $content, [ '-{' => '-&#123;', '}-' => '&#125;-' ] );
+               return [ Xml::escapeTagsOnly( $content ), 'markerType' => 'nowiki' ];
        }
 
        /**