@@ -68,9 +68,9 @@ protected function setUp()
68
68
$ this ->package = $ this ->getMockBuilder ('Composer\Package\PackageInterface ' )->getMock ();
69
69
70
70
$ this ->config = $ this ->getMockBuilder ('Composer\Config ' )->getMock ();
71
- $ this ->config ->expects ($ this -> any ())
71
+ $ this ->config ->expects (static :: any ())
72
72
->method ('get ' )
73
- ->will ( $ this -> returnCallback (function ($ key ) {
73
+ ->willReturnCallback (function ($ key ) {
74
74
$ val = null ;
75
75
76
76
switch ($ key ) {
@@ -81,35 +81,35 @@ protected function setUp()
81
81
}
82
82
83
83
return $ val ;
84
- }))
84
+ })
85
85
;
86
86
87
87
$ rootPackage = $ this ->getMockBuilder ('Composer\Package\RootPackageInterface ' )->getMock ();
88
88
89
- $ this ->composer ->expects ($ this -> any ())
89
+ $ this ->composer ->expects (static :: any ())
90
90
->method ('getConfig ' )
91
- ->will ($ this ->returnValue ( $ this -> config ) )
91
+ ->willReturn ($ this ->config )
92
92
;
93
- $ this ->composer ->expects ($ this -> any ())
93
+ $ this ->composer ->expects (static :: any ())
94
94
->method ('getPackage ' )
95
- ->will ( $ this -> returnValue ( $ rootPackage) )
95
+ ->willReturn ( $ rootPackage )
96
96
;
97
97
98
98
$ plugin = $ this ->getMockBuilder (FxpAssetPlugin::class)->disableOriginalConstructor ()->getMock ();
99
- $ plugin ->expects ($ this -> any ())
99
+ $ plugin ->expects (static :: any ())
100
100
->method ('getConfig ' )
101
101
->willReturn (new Config (array ()))
102
102
;
103
103
104
104
$ pm = $ this ->getMockBuilder (PluginManager::class)->disableOriginalConstructor ()->getMock ();
105
- $ pm ->expects ($ this -> any ())
105
+ $ pm ->expects (static :: any ())
106
106
->method ('getPlugins ' )
107
107
->willReturn (array ($ plugin ))
108
108
;
109
109
110
- $ this ->composer ->expects ($ this -> any ())
110
+ $ this ->composer ->expects (static :: any ())
111
111
->method ('getPluginManager ' )
112
- ->will ( $ this -> returnValue ( $ pm ) )
112
+ ->willReturn ( $ pm )
113
113
;
114
114
}
115
115
@@ -138,7 +138,7 @@ public function getPackageComposerTypes()
138
138
public function testDeleteIgnoreFiles ($ composerType )
139
139
{
140
140
$ this ->operation = $ this ->getMockBuilder ('Composer\DependencyResolver\Operation\OperationInterface ' )->getMock ();
141
- $ this -> assertInstanceOf ('Composer\DependencyResolver\Operation\OperationInterface ' , $ this ->operation );
141
+ static :: assertInstanceOf ('Composer\DependencyResolver\Operation\OperationInterface ' , $ this ->operation );
142
142
143
143
ScriptHandler::deleteIgnoredFiles ($ this ->createEvent ($ composerType ));
144
144
}
@@ -154,7 +154,7 @@ public function testDeleteIgnoreFilesWithInstallOperation($composerType)
154
154
->disableOriginalConstructor ()
155
155
->getMock ()
156
156
;
157
- $ this -> assertInstanceOf ('Composer\DependencyResolver\Operation\OperationInterface ' , $ this ->operation );
157
+ static :: assertInstanceOf ('Composer\DependencyResolver\Operation\OperationInterface ' , $ this ->operation );
158
158
159
159
ScriptHandler::deleteIgnoredFiles ($ this ->createEvent ($ composerType ));
160
160
}
@@ -170,7 +170,7 @@ public function testDeleteIgnoreFilesWithUpdateOperation($composerType)
170
170
->disableOriginalConstructor ()
171
171
->getMock ()
172
172
;
173
- $ this -> assertInstanceOf ('Composer\DependencyResolver\Operation\OperationInterface ' , $ this ->operation );
173
+ static :: assertInstanceOf ('Composer\DependencyResolver\Operation\OperationInterface ' , $ this ->operation );
174
174
175
175
ScriptHandler::deleteIgnoredFiles ($ this ->createEvent ($ composerType ));
176
176
}
@@ -188,24 +188,24 @@ public function testGetConfig($composerType)
188
188
$ rootPackage = $ this ->getMockBuilder ('Composer\Package\RootPackageInterface ' )->getMock ();
189
189
190
190
$ this ->composer = $ this ->getMockBuilder ('Composer\Composer ' )->getMock ();
191
- $ this ->composer ->expects ($ this -> any ())
191
+ $ this ->composer ->expects (static :: any ())
192
192
->method ('getConfig ' )
193
- ->will ($ this ->returnValue ( $ this -> config ) )
193
+ ->willReturn ($ this ->config )
194
194
;
195
- $ this ->composer ->expects ($ this -> any ())
195
+ $ this ->composer ->expects (static :: any ())
196
196
->method ('getPackage ' )
197
- ->will ( $ this -> returnValue ( $ rootPackage) )
197
+ ->willReturn ( $ rootPackage )
198
198
;
199
199
200
200
$ pm = $ this ->getMockBuilder (PluginManager::class)->disableOriginalConstructor ()->getMock ();
201
- $ pm ->expects ($ this -> any ())
201
+ $ pm ->expects (static :: any ())
202
202
->method ('getPlugins ' )
203
203
->willReturn (array ())
204
204
;
205
205
206
- $ this ->composer ->expects ($ this -> any ())
206
+ $ this ->composer ->expects (static :: any ())
207
207
->method ('getPluginManager ' )
208
- ->will ( $ this -> returnValue ( $ pm ) )
208
+ ->willReturn ( $ pm )
209
209
;
210
210
211
211
$ this ->operation = $ this ->getMockBuilder ('Composer\DependencyResolver\Operation\OperationInterface ' )->getMock ();
@@ -220,22 +220,22 @@ public function testGetConfig($composerType)
220
220
*/
221
221
protected function createEvent ($ composerType )
222
222
{
223
- $ this ->package ->expects ($ this -> any ())
223
+ $ this ->package ->expects (static :: any ())
224
224
->method ('getType ' )
225
- ->will ( $ this -> returnValue ( $ composerType) )
225
+ ->willReturn ( $ composerType )
226
226
;
227
227
228
228
if ($ this ->operation instanceof UpdateOperation) {
229
- $ this ->operation ->expects ($ this -> any ())
229
+ $ this ->operation ->expects (static :: any ())
230
230
->method ('getTargetPackage ' )
231
- ->will ($ this ->returnValue ( $ this -> package ) )
231
+ ->willReturn ($ this ->package )
232
232
;
233
233
}
234
234
235
235
if ($ this ->operation instanceof InstallOperation) {
236
- $ this ->operation ->expects ($ this -> any ())
236
+ $ this ->operation ->expects (static :: any ())
237
237
->method ('getPackage ' )
238
- ->will ($ this ->returnValue ( $ this -> package ) )
238
+ ->willReturn ($ this ->package )
239
239
;
240
240
}
241
241
0 commit comments