File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
1
/composer.lock
2
2
/vendor
3
+ /.phpunit.result.cache
Original file line number Diff line number Diff line change 26
26
"symfony/http-kernel" : " ^4.3"
27
27
},
28
28
"require-dev" : {
29
- "consistence/coding-standard" : " 3.5 " ,
29
+ "consistence/coding-standard" : " 3.9 " ,
30
30
"jakub-onderka/php-parallel-lint" : " 1.0.0" ,
31
- "matthiasnoback/symfony-config-test" : " 4.0.0" ,
32
- "matthiasnoback/symfony-dependency-injection-test" : " 3.0.0" ,
33
- "phpstan/phpstan-shim" : " 0.10.5" ,
34
- "phpstan/phpstan-phpunit" : " 0.10" ,
35
- "phpunit/phpunit" : " 7.4.4" ,
36
- "php-coveralls/php-coveralls" : " 2.1.0" ,
37
- "squizlabs/php_codesniffer" : " 3.3.2"
31
+ "matthiasnoback/symfony-config-test" : " 4.1.0" ,
32
+ "matthiasnoback/symfony-dependency-injection-test" : " 4.1.0" ,
33
+ "phpstan/phpstan-shim" : " 0.11.19" ,
34
+ "phpstan/phpstan-phpunit" : " 0.11.2" ,
35
+ "phpunit/phpunit" : " 8.4.3" ,
36
+ "php-coveralls/php-coveralls" : " 2.2.0"
38
37
},
39
38
"autoload" : {
40
39
"psr-4" : {
Original file line number Diff line number Diff line change @@ -275,11 +275,11 @@ public function testScriptIsNotInjectedOnNonHtmlContentType(): void
275
275
}
276
276
277
277
/**
278
- * @return \PHPUnit_Framework_MockObject_MockObject |\Symfony\Component\HttpKernel\Kernel
278
+ * @return \PHPUnit\Framework\MockObject\MockObject |\Symfony\Component\HttpKernel\Kernel
279
279
*/
280
280
protected function getKernelMock ()
281
281
{
282
- /** @var \Symfony\Component\HttpKernel\Kernel|\PHPUnit_Framework_MockObject_MockObject $kernelMock */
282
+ /** @var \Symfony\Component\HttpKernel\Kernel|\PHPUnit\Framework\MockObject\MockObject $kernelMock */
283
283
$ kernelMock = $ this
284
284
->getMockBuilder (Kernel::class)
285
285
->disableOriginalConstructor ()
@@ -290,11 +290,11 @@ protected function getKernelMock()
290
290
/**
291
291
* @param bool $isXmlHttpRequest
292
292
* @param string $requestFormat
293
- * @return \PHPUnit_Framework_MockObject_MockObject |\Symfony\Component\HttpFoundation\Request
293
+ * @return \PHPUnit\Framework\MockObject\MockObject |\Symfony\Component\HttpFoundation\Request
294
294
*/
295
295
protected function getRequestMock (bool $ isXmlHttpRequest = false , string $ requestFormat = 'html ' )
296
296
{
297
- /** @var \Symfony\Component\HttpFoundation\Request|\PHPUnit_Framework_MockObject_MockObject $request */
297
+ /** @var \Symfony\Component\HttpFoundation\Request|\PHPUnit\Framework\MockObject\MockObject $request */
298
298
$ request = $ this
299
299
->getMockBuilder (Request::class)
300
300
->setMethods ([
You can’t perform that action at this time.
0 commit comments