Skip to content

Commit

Permalink
Drop null parameter on call to TestCase->setMethods()
Browse files Browse the repository at this point in the history
  • Loading branch information
GwendolenLynch committed Aug 4, 2019
1 parent 9fde85d commit 55cec2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
bin/
vendor/
composer.lock
.phpunit.result.cache
2 changes: 1 addition & 1 deletion tests/MartinGeorgiev/Doctrine/DBAL/Types/BaseTypeTest.php
Expand Up @@ -26,7 +26,7 @@ protected function setUp(): void
$this->platform = $this->createMock(AbstractPlatform::class);

$this->fixture = $this->getMockBuilder(BaseType::class)
->setMethods(null)
->setMethods()
->disableOriginalConstructor()
->getMockForAbstractClass();
}
Expand Down

0 comments on commit 55cec2e

Please sign in to comment.