@@ -17,9 +17,9 @@ discard block |
||
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 |
||
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 |