Skip to content

Commit 4b6bf93

Browse files
committed
Changed: Procedure rename
1 parent 17b04a6 commit 4b6bf93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CalculateRootJobStatusService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected function calculateRootJobStatus(array $jobs)
6969
$success = 0;
7070

7171
foreach ($jobs as $job) {
72-
$this->jobStorage->refreshedJobEntity($job);
72+
$this->jobStorage->refreshJobEntity($job);
7373
switch ($job->getStatus()) {
7474
case Job::STATUS_NEW:
7575
$new++;

Doctrine/JobStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public function saveJob(Job $job, \Closure $lockCallback = null)
182182
/**
183183
* @param Job $job
184184
*/
185-
public function refreshedJobEntity($job)
185+
public function refreshJobEntity($job)
186186
{
187187
$this->getEntityManager()->refresh($job);
188188
}

0 commit comments

Comments
 (0)