@@ -79,7 +79,7 @@ |
||
| 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); |
@@ -44,7 +44,7 @@ |
||
| 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 | }); |