Skip to content

Commit

Permalink
StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronJackson committed Nov 30, 2024
1 parent 283fbb5 commit 8717f8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ public function toSlack($notifiable)

return (new SlackMessage)
->to($notifiable->getSlackChannel())
->attachment(fn ($attachment) =>
$attachment->title($this->meeting->getTitle() . ': Proxy Cancelled')
->attachment(fn ($attachment) => $attachment->title($this->meeting->getTitle() . ': Proxy Cancelled')
->content($content)
->fallback($content)
->timestamp(Carbon::now())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ public function toSlack($notifiable)

return (new SlackMessage)
->to($notifiable->getSlackChannel())
->attachment(fn ($attachment) =>
$attachment->title($meeting->getTitle() . ': Proxy Registered')
->attachment(fn ($attachment) => $attachment->title($meeting->getTitle() . ': Proxy Registered')
->content($content)
->fallback($content)
->timestamp(Carbon::now())
Expand Down

0 comments on commit 8717f8c

Please sign in to comment.