Passed
Push — master ( 3d39af...517f0d )
by Stephan
01:46
created
tests/ExtensionRegistryHelperTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,9 +17,9 @@  discard block
 block discarded – undo
17 17
 	 */
18 18
 	public function testGetSingletonOnInvalidEnvironment() {
19 19
 
20
-		$this->expectException( \Exception::class );
20
+		$this->expectException(\Exception::class);
21 21
 
22
-		self::assertInstanceOf( ExtensionRegistryHelper::class, ExtensionRegistryHelper::singleton() );
22
+		self::assertInstanceOf(ExtensionRegistryHelper::class, ExtensionRegistryHelper::singleton());
23 23
 	}
24 24
 
25 25
 	/**
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 	public function testGetSingleton() {
29 29
 
30 30
 		$GLOBALS[ 'wgVersion' ] = '1.27';
31
-		self::assertInstanceOf( ExtensionRegistryHelper::class, ExtensionRegistryHelper::singleton() );
31
+		self::assertInstanceOf(ExtensionRegistryHelper::class, ExtensionRegistryHelper::singleton());
32 32
 	}
33 33
 
34 34
 
Please login to merge, or discard this patch.