Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #5 from bar/patch-2
Browse files Browse the repository at this point in the history
Remove unneccesary assignments.
  • Loading branch information
wa0x6e committed Dec 7, 2013
2 parents 0b942e1 + c6e66be commit 451a380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ResqueStatus/ResqueStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public function registerSchedulerWorker($pid)
*/
public function isSchedulerWorker($worker)
{
list($host, $pid, $queue) = explode(':', (string)$worker);
list(, $pid, ) = explode(':', (string)$worker);

return $pid === $this->redis->get(self::$schedulerWorkerKey);
}
Expand Down

0 comments on commit 451a380

Please sign in to comment.