From ce289eb892963b8f342c7d6deacb6e40d9d9d38c Mon Sep 17 00:00:00 2001 From: Petr Knap <8299754+petrknap@users.noreply.github.com> Date: Sat, 12 Oct 2024 22:51:53 +0200 Subject: [PATCH] chore: removed unnecessary internal annotation --- src/Exception/ProfileException.php | 3 --- src/Exception/ProfilingHasBeenAlreadyFinished.php | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Exception/ProfileException.php b/src/Exception/ProfileException.php index 1d29a4f..7217cae 100644 --- a/src/Exception/ProfileException.php +++ b/src/Exception/ProfileException.php @@ -6,9 +6,6 @@ use Throwable; -/** - * @internal exception should never be thrown out - */ interface ProfileException extends Throwable { } diff --git a/src/Exception/ProfilingHasBeenAlreadyFinished.php b/src/Exception/ProfilingHasBeenAlreadyFinished.php index 084e3ad..4bc940e 100644 --- a/src/Exception/ProfilingHasBeenAlreadyFinished.php +++ b/src/Exception/ProfilingHasBeenAlreadyFinished.php @@ -7,6 +7,7 @@ use LogicException; /** + * @todo rename to `ProfilingCouldNotBeFinished` * @todo remove implementation of {@see ProfilerException} */ final class ProfilingHasBeenAlreadyFinished extends LogicException implements ProfilerException, ProfilingException