Skip to content

Commit

Permalink
Possible bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
cxj committed Mar 5, 2023
1 parent 58cc082 commit 7773619
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Commands/LookingGlassCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function handle(): int
{
$result = Result::make('Test message from CLI');

LookingGlass::send($result);
LookingGlass::transmit($result);

$this->comment('All done');

Expand Down
2 changes: 1 addition & 1 deletion src/LookingGlass.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class LookingGlass
{
public function handle(Result $result): void
public function transmit(Result $result): void
{
// Send this status to Looking Glass.
WebhookCall::send()
Expand Down

0 comments on commit 7773619

Please sign in to comment.