From 8458919a34b537c826a572673d2b888c904b87aa Mon Sep 17 00:00:00 2001 From: Jake Bentvelzen Date: Wed, 9 May 2018 11:49:40 +1000 Subject: [PATCH] Fix undefined constant typo (#20) --- code/jobs/PruneChangesBeforeJob.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/jobs/PruneChangesBeforeJob.php b/code/jobs/PruneChangesBeforeJob.php index 1b50ddd..b0238a9 100644 --- a/code/jobs/PruneChangesBeforeJob.php +++ b/code/jobs/PruneChangesBeforeJob.php @@ -56,8 +56,8 @@ public function process() { $this->currentStep = 1; $this->isComplete = true; - singleton(QueuedJobService)->queueJob($job, $next); + singleton('QueuedJobService')->queueJob($job, $next); } } -} \ No newline at end of file +}