Completed
Push — master ( 2f9634...58e792 )
by Matthew
14:33 queued 03:52
created
ORM/JobManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
      */
80 80
     public function pruneErroneousJobs($workerName = null, $method = null)
81 81
     {
82
-        return $this->pruneJobs($workerName, $method, $this->getArchiveObjectName(), function ($qb) {
82
+        return $this->pruneJobs($workerName, $method, $this->getArchiveObjectName(), function($qb) {
83 83
             /* @var QueryBuilder $qb */
84 84
             $qb->where('j.status = :status')
85 85
                 ->setParameter(':status', BaseJob::STATUS_ERROR);
Please login to merge, or discard this patch.
ODM/JobManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function pruneErroneousJobs($workerName = null, $method = null)
46 46
     {
47
-        return $this->pruneJobs($workerName, $method, $this->getArchiveObjectName(), function ($qb) {
47
+        return $this->pruneJobs($workerName, $method, $this->getArchiveObjectName(), function($qb) {
48 48
             /* @var Builder $qb */
49 49
             return $qb->field('status')->equals(BaseJob::STATUS_ERROR);
50 50
         });
Please login to merge, or discard this patch.