diff --git a/src/Catcher.php b/src/Catcher.php index 23bbe7c..a8be68c 100644 --- a/src/Catcher.php +++ b/src/Catcher.php @@ -25,7 +25,7 @@ final class Catcher private static $instance; /** - * SDK handler: contains methods that catchs errors and exceptions + * SDK handler: contains methods that catch errors and exceptions * * @var Handler */ @@ -107,7 +107,7 @@ public function sendMessage(string $message, array $context = []): void /** * @param Throwable $throwable - * @param array $context + * @param array $context * * @throws Throwable * diff --git a/src/Exception/SilencedErrorException.php b/src/Exception/SilencedErrorException.php index 0978dd1..efe071e 100644 --- a/src/Exception/SilencedErrorException.php +++ b/src/Exception/SilencedErrorException.php @@ -4,4 +4,4 @@ class SilencedErrorException extends \ErrorException { -} \ No newline at end of file +} diff --git a/src/Handler.php b/src/Handler.php index dd1445f..236aaee 100644 --- a/src/Handler.php +++ b/src/Handler.php @@ -4,8 +4,8 @@ namespace Hawk; -use Hawk\Transport\TransportInterface; use Hawk\Exception\SilencedErrorException; +use Hawk\Transport\TransportInterface; class Handler {