Skip to content

Commit

Permalink
Merge branch 'main' of github.com:vormkracht10/laravel-mails
Browse files Browse the repository at this point in the history
  • Loading branch information
Baspa committed Sep 27, 2024
2 parents c1faec8 + ad79e32 commit d76c8e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/Commands/WebhooksMailCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@

use Illuminate\Console\Command;
use Vormkracht10\Mails\Actions\RegisterWebhooks;
use Illuminate\Contracts\Console\PromptsForMissingInput;

class WebhooksMailCommand extends Command
class WebhooksMailCommand extends Command implements PromptsForMissingInput
{
public $signature = 'mail:webhooks {provider}';

Expand Down
4 changes: 2 additions & 2 deletions src/Shared/AsAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

trait AsAction
{
public function __invoke()
public function __invoke(...$parameters)
{
return $this->handle(...func_get_args());
return $this->handle(...$parameters);
}
}

0 comments on commit d76c8e5

Please sign in to comment.