GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 13-15 lines in 2 locations

src/BusinessCase/JobManagement/ChronosStoreJobBusinessCase.php 1 location

@@ 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

src/BusinessCase/JobManagement/MarathonStoreJobBusinessCase.php 1 location

@@ 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