Skip to content

Commit

Permalink
Fix configuration PHPUnit 6 @ dev
Browse files Browse the repository at this point in the history
  • Loading branch information
lcobucci committed Nov 2, 2017
1 parent 63643ab commit 67327a3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions phpstan.neon
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
parameters:
ignoreErrors:
# Ignore PHPUnit mock stuff
- '#PHPUnit_Framework_MockObject_MockObject.* given#'
- '#does not accept PHPUnit_Framework_MockObject_MockObject#'
- '#PHPUnit\\Framework\\MockObject\\MockObject.* given#'
- '#PHPUnit\\Framework\\MockObject\\MockObject::.*\(\)#'
2 changes: 1 addition & 1 deletion test/Config/ContainerConfigurationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
final class ContainerConfigurationTest extends \PHPUnit\Framework\TestCase
{
/**
* @var CompilerPassInterface|\PHPUnit_Framework_MockObject_MockObject
* @var CompilerPassInterface|\PHPUnit\Framework\MockObject\MockObject
*/
private $pass;

Expand Down
2 changes: 1 addition & 1 deletion test/ContainerBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
final class ContainerBuilderTest extends \PHPUnit\Framework\TestCase
{
/**
* @var Generator|\PHPUnit_Framework_MockObject_MockObject
* @var Generator|\PHPUnit\Framework\MockObject\MockObject
*/
private $generator;

Expand Down
2 changes: 1 addition & 1 deletion test/GeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
final class GeneratorTest extends \PHPUnit\Framework\TestCase
{
/**
* @var Generator|\PHPUnit_Framework_MockObject_MockObject
* @var Generator|\PHPUnit\Framework\MockObject\MockObject
*/
private $generator;

Expand Down

0 comments on commit 67327a3

Please sign in to comment.