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 191ab7f commit fe058d1Copy full SHA for fe058d1
src/PHPUnit/GracefulInterruptSubscriber.php
@@ -1,8 +1,8 @@
1
<?php
2
namespace Esler\PHPUnit;
3
4
-use PHPUnit\Event\Test\PreparedSubscriber;
5
-use PHPUnit\Event\Test\Prepared;
+use PHPUnit\Event\Test\PreparationStartedSubscriber;
+use PHPUnit\Event\Test\PreparationStarted;
6
use PHPUnit\Framework\Assert;
7
8
/**
@@ -14,11 +14,11 @@
14
* @author Ondrej Esler <esler.ondrej@gmail.com>
15
* @license MIT
16
*/
17
-final class GracefulInterruptSubscriber implements PreparedSubscriber
+final class GracefulInterruptSubscriber implements PreparationStartedSubscriber
18
{
19
public bool $interrupted = false;
20
21
- public function notify(Prepared $event): void
+ public function notify(PreparationStarted $event): void
22
23
pcntl_signal_dispatch();
24
0 commit comments