Skip to content

Commit 6f7c6ca

Browse files
committed
fix exceptions
1 parent b71c00d commit 6f7c6ca

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/Exception/ErrorException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
/**
1616
* `ErrorException` represents a PHP error.
1717
* @psalm-type DebugBacktraceType = list<array{args?: array<mixed>, class?: class-string, file?: string, function?: string, line?: int, object?: object, type?: string}>
18-
*
19-
* @final
2018
*/
2119
final class ErrorException extends \ErrorException implements FriendlyExceptionInterface
2220
{

src/Exception/UserException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
* - throw directly (`throw new UserException(...)`) for explicit user-facing errors;
2020
* - annotate any exception class with the `#[UserException]` attribute
2121
* to mark its messages as user-facing without extending this class.
22-
*
23-
* @final
2422
*/
2523
#[Attribute(Attribute::TARGET_CLASS)]
2624
final class UserException extends Exception

0 commit comments

Comments
 (0)