Merge "Http::getProxy() method to get proxy configuration"
[lhc/web/wiklou.git] / includes / exception / MWException.php
index c0186f9..e1d7e6c 100644 (file)
@@ -70,7 +70,7 @@ class MWException extends Exception {
         * @param array $args Arguments to pass to the callback functions
         * @return string|null String to output or null if any hook has been called
         */
-       public function runHooks( $name, $args = array() ) {
+       public function runHooks( $name, $args = [] ) {
                global $wgExceptionHooks;
 
                if ( !isset( $wgExceptionHooks ) || !is_array( $wgExceptionHooks ) ) {
@@ -84,7 +84,7 @@ class MWException extends Exception {
                }
 
                $hooks = $wgExceptionHooks[$name];
-               $callargs = array_merge( array( $this ), $args );
+               $callargs = array_merge( [ $this ], $args );
 
                foreach ( $hooks as $hook ) {
                        if (