| @@ 35-49 (lines=15) @@ | ||
| 32 | * @param JobDependencyServiceInterface $jobDependencyService | |
| 33 | * @param LoggerInterface $logger | |
| 34 | */ | |
| 35 | public function __construct( | |
| 36 | JobIndexServiceInterface $jobIndexService, | |
| 37 | JobRepositoryInterface $jobRepositoryRemote, | |
| 38 | JobRepositoryInterface $jobRepositoryLocal, | |
| 39 | JobComparisonInterface $jobComparisonBusinessCase, | |
| 40 | JobDependencyServiceInterface $jobDependencyService, | |
| 41 | LoggerInterface $logger | |
| 42 |     ) { | |
| 43 | $this->jobIndexService = $jobIndexService; | |
| 44 | $this->jobRepositoryRemote = $jobRepositoryRemote; | |
| 45 | $this->jobRepositoryLocal = $jobRepositoryLocal; | |
| 46 | $this->jobComparisonBusinessCase = $jobComparisonBusinessCase; | |
| 47 | $this->jobDependencyService = $jobDependencyService; | |
| 48 | $this->logger = $logger; | |
| 49 | } | |
| 50 | ||
| 51 | /** | |
| 52 | * @inheritdoc | |
| @@ 29-41 (lines=13) @@ | ||
| 26 | * @param JobComparisonInterface $jobComparisonBusinessCase | |
| 27 | * @param LoggerInterface $logger | |
| 28 | */ | |
| 29 | public function __construct( | |
| 30 | JobIndexServiceInterface $jobIndexService, | |
| 31 | JobRepositoryInterface $jobRepositoryRemote, | |
| 32 | JobRepositoryInterface $jobRepositoryLocal, | |
| 33 | JobComparisonInterface $jobComparisonBusinessCase, | |
| 34 | LoggerInterface $logger | |
| 35 |     ) { | |
| 36 | $this->jobIndexService = $jobIndexService; | |
| 37 | $this->logger = $logger; | |
| 38 | $this->jobComparisonBusinessCase = $jobComparisonBusinessCase; | |
| 39 | $this->jobRepositoryRemote = $jobRepositoryRemote; | |
| 40 | $this->jobRepositoryLocal = $jobRepositoryLocal; | |
| 41 | } | |
| 42 | ||
| 43 | /** | |
| 44 | * @return void | |