From 0a8bd9d7a5da5fe6379e365d57b6f0822be34410 Mon Sep 17 00:00:00 2001 From: tanhongit Date: Thu, 2 Nov 2023 19:47:45 +0000 Subject: [PATCH] Fix styling --- src/Notifier.php | 2 +- src/Structures/App.php | 2 +- src/Structures/Notification.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Notifier.php b/src/Notifier.php index 4644f99..829ea48 100644 --- a/src/Notifier.php +++ b/src/Notifier.php @@ -2,7 +2,6 @@ namespace CSlant\TelegramGitNotifier; -use GuzzleHttp\Client; use CSlant\TelegramGitNotifier\Constants\EventConstant; use CSlant\TelegramGitNotifier\Constants\NotificationConstant; use CSlant\TelegramGitNotifier\Interfaces\EventInterface; @@ -12,6 +11,7 @@ use CSlant\TelegramGitNotifier\Structures\App; use CSlant\TelegramGitNotifier\Structures\Notification; use CSlant\TelegramGitNotifier\Trait\EventTrait; +use GuzzleHttp\Client; use Telegram; class Notifier implements AppInterface, NotificationInterface, EventInterface diff --git a/src/Structures/App.php b/src/Structures/App.php index e6836f8..a4ce7ec 100644 --- a/src/Structures/App.php +++ b/src/Structures/App.php @@ -2,9 +2,9 @@ namespace CSlant\TelegramGitNotifier\Structures; -use Exception; use CSlant\TelegramGitNotifier\Exceptions\EntryNotFoundException; use CSlant\TelegramGitNotifier\Exceptions\MessageIsEmptyException; +use Exception; use Telegram; trait App diff --git a/src/Structures/Notification.php b/src/Structures/Notification.php index 261b0fa..4f60e61 100644 --- a/src/Structures/Notification.php +++ b/src/Structures/Notification.php @@ -2,10 +2,10 @@ namespace CSlant\TelegramGitNotifier\Structures; -use GuzzleHttp\Exception\GuzzleException; use CSlant\TelegramGitNotifier\Constants\EventConstant; use CSlant\TelegramGitNotifier\Exceptions\MessageIsEmptyException; use CSlant\TelegramGitNotifier\Exceptions\SendNotificationException; +use GuzzleHttp\Exception\GuzzleException; use Symfony\Component\HttpFoundation\Request; trait Notification