@@ -27,8 +27,8 @@ public function testConfigure()
27
27
$ config = FLEX_TEST_DIR .'/config/bundles.php ' ;
28
28
29
29
$ configurator = new BundlesConfigurator (
30
- $ this ->getMockBuilder (' Composer\Composer ' )->getMock (),
31
- $ this ->getMockBuilder (' Composer\IO\ IOInterface' )->getMock (),
30
+ $ this ->getMockBuilder (Composer::class )->getMock (),
31
+ $ this ->getMockBuilder (IOInterface::class )->getMock (),
32
32
new Options (['config-dir ' => 'config ' , 'root-dir ' => FLEX_TEST_DIR ])
33
33
);
34
34
@@ -64,8 +64,8 @@ public function testConfigureWhenBundlesAlreadyExists()
64
64
);
65
65
66
66
$ configurator = new BundlesConfigurator (
67
- $ this ->getMockBuilder (' Composer\Composer ' )->getMock (),
68
- $ this ->getMockBuilder (' Composer\IO\ IOInterface' )->getMock (),
67
+ $ this ->getMockBuilder (Composer::class )->getMock (),
68
+ $ this ->getMockBuilder (IOInterface::class )->getMock (),
69
69
new Options (['config-dir ' => 'config ' , 'root-dir ' => FLEX_TEST_DIR ])
70
70
);
71
71
@@ -103,8 +103,8 @@ public function testUnconfigure()
103
103
);
104
104
105
105
$ configurator = new BundlesConfigurator (
106
- $ this ->getMockBuilder (' Composer\Composer ' )->getMock (),
107
- $ this ->getMockBuilder (' Composer\IO\ IOInterface' )->getMock (),
106
+ $ this ->getMockBuilder (Composer::class )->getMock (),
107
+ $ this ->getMockBuilder (IOInterface::class )->getMock (),
108
108
new Options (['config-dir ' => 'config ' , 'root-dir ' => FLEX_TEST_DIR ])
109
109
);
110
110
0 commit comments