From 8726b81a667c405da225aa19894f5f2c9d5880fd Mon Sep 17 00:00:00 2001 From: Adrian Hopek Date: Tue, 26 Apr 2022 12:56:35 +0200 Subject: [PATCH] #116 - cs fix --- .../Console/Commands/SendDailySummaryToSlack.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Infrastructure/Console/Commands/SendDailySummaryToSlack.php b/app/Infrastructure/Console/Commands/SendDailySummaryToSlack.php index 139ddb2..1c2a5b6 100644 --- a/app/Infrastructure/Console/Commands/SendDailySummaryToSlack.php +++ b/app/Infrastructure/Console/Commands/SendDailySummaryToSlack.php @@ -62,17 +62,17 @@ class SendDailySummaryToSlack extends Command return "{$this->getSlackBaseUrl()}/chat.postMessage"; } - protected function getSlackBaseUrl(): string + protected function getSlackBaseUrl(): ?string { return config("services.slack.url"); } - protected function getSlackClientToken(): string + protected function getSlackClientToken(): ?string { return config("services.slack.client_token"); } - protected function getSlackChannel(): string + protected function getSlackChannel(): ?string { return config("services.slack.default_channel"); }