Passed
Push — master ( cf2ee8...35ad91 )
by Jeroen De
02:06
created
src/Bootstrap.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -51,14 +51,14 @@
 block discarded – undo
51 51
 	 */
52 52
 	public static function init() {
53 53
 
54
-		$GLOBALS[ 'wgHooks' ][ 'SetupAfterCache' ][] = function () {
54
+		$GLOBALS['wgHooks']['SetupAfterCache'][] = function() {
55 55
 
56 56
 			$configuration = [];
57
-			$configuration[ 'IP' ] = $GLOBALS[ 'IP' ];
58
-			$configuration[ 'remoteBasePath' ] = $GLOBALS[ 'wgExtensionAssetsPath' ] . '/Bootstrap/resources/bootstrap';
59
-			$configuration[ 'localBasePath' ] = $GLOBALS[ 'wgExtensionDirectory' ] . '/Bootstrap/resources/bootstrap';
57
+			$configuration['IP'] = $GLOBALS['IP'];
58
+			$configuration['remoteBasePath'] = $GLOBALS['wgExtensionAssetsPath'] . '/Bootstrap/resources/bootstrap';
59
+			$configuration['localBasePath'] = $GLOBALS['wgExtensionDirectory'] . '/Bootstrap/resources/bootstrap';
60 60
 
61
-			$setupAfterCache = new SetupAfterCache( $configuration );
61
+			$setupAfterCache = new SetupAfterCache($configuration);
62 62
 			$setupAfterCache->process();
63 63
 		};
64 64
 	}
Please login to merge, or discard this patch.