From b5f28756daa04e0a52ee5638b5bfc3fcc851d65f Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Sun, 21 May 2017 12:07:35 +0200 Subject: [PATCH] fix job constructor --- compass/app/Jobs/NotifyOfNewLocations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compass/app/Jobs/NotifyOfNewLocations.php b/compass/app/Jobs/NotifyOfNewLocations.php index 52e49d4..06da65c 100644 --- a/compass/app/Jobs/NotifyOfNewLocations.php +++ b/compass/app/Jobs/NotifyOfNewLocations.php @@ -11,7 +11,7 @@ class NotifyOfNewLocations extends Job implements SelfHandling, ShouldQueue { private $_dbid; - public function __construct($dbid, $data) { + public function __construct($dbid) { $this->_dbid = $dbid; }