Skip to content

Commit c8a85da

Browse files
tanhongitgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 7f587b7 commit c8a85da

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/Http/Actions/IndexAction.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
namespace CSlant\LaravelTelegramGitNotifier\Http\Actions;
44

5+
use CSlant\LaravelTelegramGitNotifier\Services\NotificationService;
56
use CSlant\TelegramGitNotifier\Bot;
67
use CSlant\TelegramGitNotifier\Exceptions\ConfigFileException;
78
use CSlant\TelegramGitNotifier\Exceptions\InvalidViewTemplateException;
89
use CSlant\TelegramGitNotifier\Exceptions\MessageIsEmptyException;
910
use CSlant\TelegramGitNotifier\Exceptions\SendNotificationException;
1011
use CSlant\TelegramGitNotifier\Notifier;
11-
use CSlant\LaravelTelegramGitNotifier\Services\NotificationService;
1212
use GuzzleHttp\Client;
1313
use Symfony\Component\HttpFoundation\Request;
1414
use Telegram;
@@ -45,8 +45,10 @@ public function __construct()
4545
*/
4646
public function __invoke(): void
4747
{
48-
$sendNotification = new NotificationService($this->notifier,
49-
$this->bot->setting);
48+
$sendNotification = new NotificationService(
49+
$this->notifier,
50+
$this->bot->setting
51+
);
5052
$sendNotification->handle();
5153
}
5254
}

0 commit comments

Comments
 (0)