Skip to content

Commit

Permalink
revert command key format
Browse files Browse the repository at this point in the history
  • Loading branch information
yupmin committed May 31, 2019
1 parent d31b473 commit 9a62894
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion library/Odesk/Phystrix/AbstractCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ public function getCommandKey()
} else {
// If the command key hasn't been defined in the class we use the current class name
// refs : https://github.com/persevereVon/preq-laravel/blob/master/src/AbstractCommand.php#L100
return str_replace('\\', '.', get_class($this));
// return str_replace('\\', '.', get_class($this));
return get_class($this);
}
}

Expand Down

0 comments on commit 9a62894

Please sign in to comment.