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 c8952d7 commit c258d75Copy full SHA for c258d75
test/Event/ControllerEventListenerTraitTest.php
@@ -7,6 +7,7 @@
7
use Dot\Controller\Event\ControllerEvent;
8
use Dot\Controller\Event\ControllerEventListenerTrait as Subject;
9
use Laminas\EventManager\EventManagerInterface;
10
+use PHPUnit\Framework\MockObject\Exception;
11
use PHPUnit\Framework\TestCase;
12
13
use function is_callable;
@@ -15,6 +16,9 @@ class ControllerEventListenerTraitTest extends TestCase
15
16
{
17
private object $traitObject;
18
19
+ /**
20
+ * @throws Exception
21
+ */
22
protected function setUp(): void
23
24
$eventManager = $this->createMock(EventManagerInterface::class);
0 commit comments