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 abe0eca commit bbd12feCopy full SHA for bbd12fe
src/Symfony/Component/ErrorHandler/DebugClassLoader.php
@@ -13,6 +13,7 @@
13
14
use Doctrine\Common\Persistence\Proxy as LegacyProxy;
15
use Doctrine\Persistence\Proxy;
16
+use Mockery\MockInterface;
17
use PHPUnit\Framework\MockObject\Matcher\StatelessInvocation;
18
use PHPUnit\Framework\MockObject\MockObject;
19
use Prophecy\Prophecy\ProphecySubjectInterface;
@@ -306,6 +307,7 @@ public static function checkClasses(): bool
306
307
&& !is_subclass_of($symbols[$i], Proxy::class)
308
&& !is_subclass_of($symbols[$i], ProxyInterface::class)
309
&& !is_subclass_of($symbols[$i], LegacyProxy::class)
310
+ && !is_subclass_of($symbols[$i], MockInterface::class)
311
) {
312
$loader->checkClass($symbols[$i]);
313
}
0 commit comments