8000
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 ffb0d2d commit 9ed93dfCopy full SHA for 9ed93df
src/Symfony/Component/ErrorHandler/DebugClassLoader.php
@@ -15,6 +15,7 @@
15
use Doctrine\Common\Persistence\Proxy as LegacyProxy;
16
use Doctrine\Persistence\Proxy;
17
use Mockery\MockInterface;
18
+use Phake\IMock;
19
use PHPUnit\Framework\MockObject\Matcher\StatelessInvocation;
20
use PHPUnit\Framework\MockObject\MockObject;
21
use Prophecy\Prophecy\ProphecySubjectInterface;
@@ -310,6 +311,7 @@ public static function checkClasses(): bool
310
311
&& !is_subclass_of($symbols[$i], ProxyInterface::class)
312
&& !is_subclass_of($symbols[$i], LegacyProxy::class)
313
&& !is_subclass_of($symbols[$i], MockInterface::class)
314
+ && !is_subclass_of($symbols[$i], IMock::class)
315
) {
316
$loader->checkClass($symbols[$i]);
317
}
0 commit comments