diff --git a/src/Inspector/Daemon/Searcher/Context/PhpSearcherContextInterface.php b/src/Inspector/Daemon/Searcher/Context/PhpSearcherContextInterface.php index 0ac90160..f28bf2c8 100644 --- a/src/Inspector/Daemon/Searcher/Context/PhpSearcherContextInterface.php +++ b/src/Inspector/Daemon/Searcher/Context/PhpSearcherContextInterface.php @@ -14,6 +14,7 @@ namespace PhpProfiler\Inspector\Daemon\Searcher\Context; use Amp\Promise; +use PhpProfiler\Inspector\Daemon\Dispatcher\Message\UpdateTargetProcessMessage; interface PhpSearcherContextInterface { @@ -33,4 +34,4 @@ public function sendTargetRegex(string $regex): Promise; * @psalm-yield Promise */ public function receivePidList(): Promise; -} \ No newline at end of file +} diff --git a/tests/Inspector/Daemon/Searcher/Context/PhpSearcherContextCreatorTest.php b/tests/Inspector/Daemon/Searcher/Context/PhpSearcherContextCreatorTest.php index eb23b7ef..a026b542 100644 --- a/tests/Inspector/Daemon/Searcher/Context/PhpSearcherContextCreatorTest.php +++ b/tests/Inspector/Daemon/Searcher/Context/PhpSearcherContextCreatorTest.php @@ -35,4 +35,5 @@ public function testCreate() PhpSearcherContextInterface::class, $php_searcher_context_creator->create() ); - }} + } +} diff --git a/tests/Inspector/Settings/TraceLoopSettingsTest.php b/tests/Inspector/Settings/TraceLoopSettingsTest.php index 0e08c987..2d2a4d1b 100644 --- a/tests/Inspector/Settings/TraceLoopSettingsTest.php +++ b/tests/Inspector/Settings/TraceLoopSettingsTest.php @@ -57,5 +57,4 @@ public function testFromConsoleInputMaxRetriesNotInteger(): void $this->expectException(TraceLoopInspectorSettingsException::class); $settings = TraceLoopSettings::fromConsoleInput($input); } - }