Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ngaspari committed May 20, 2024
1 parent 6a24750 commit e2e7654
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Queue/Jobs/StompJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ protected function laravelJobClassExists(): bool {
else {
$command = Arr::get($this->payload, 'data.command');
$command = $command ?? unserialize($command);
/** @var BroadcastEvent $comand */
if ($command & $comand->event && (class_exists(get_class($comand->event)))) {
/** @var BroadcastEvent $command */
if ($command & $command->event && (class_exists(get_class($command->event)))) {
return true;
}
}
Expand Down

0 comments on commit e2e7654

Please sign in to comment.