We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f0653b commit 875a963Copy full SHA for 875a963
src/StaticMethodMock.php
@@ -75,7 +75,6 @@ public static function handleStaticCall(string $className, string $method, array
75
}
76
$expected = array_shift($mock->expectations);
77
$mock->testCase->assertEquals($expected['method'], strtoupper($method), sprintf('StaticMethodMock method mismatch for %s::%s', $className, $method));
78
- var_dump([$expected['arguments'], $arguments]);
79
$mock->testCase->assertEquals($expected['arguments'], $arguments, sprintf('StaticMethodMock arguments mismatch for %s::%s', $className, $method));
80
if ($expected['exception'] !== null) {
81
throw $expected['exception'];
0 commit comments