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 = 16-16 lines in 2 locations

src/BusinessCase/JobManagement/ChronosStoreJobBusinessCase.php 1 location

@@ 28-43 (lines=16) @@
25
    private $oJobDependencyService;
26
27
28
    public function __construct(
29
        JobIndexServiceInterface $oJobIndexService,
30
        JobRepositoryInterface $oJobRepositoryRemote,
31
        JobRepositoryInterface $oJobRepositoryLocal,
32
        JobComparisonInterface  $oJobComparisonBusinessCase,
33
        JobDependencyServiceInterface $oJobDependencyService,
34
        LoggerInterface $oLogger
35
    )
36
    {
37
        $this->oJobIndexService = $oJobIndexService;
38
        $this->oJobRepositoryRemote = $oJobRepositoryRemote;
39
        $this->oJobRepositoryLocal = $oJobRepositoryLocal;
40
        $this->oJobComparisonBusinessCase = $oJobComparisonBusinessCase;
41
        $this->oJobDependencyService = $oJobDependencyService;
42
        $this->oLogger = $oLogger;
43
    }
44
45
    /**
46
     * @inheritdoc

src/BusinessCase/JobManagement/MarathonStoreJobBusinessCase.php 1 location

@@ 30-45 (lines=16) @@
27
     * @param JobComparisonInterface $oJobComparisonBusinessCase
28
     * @param LoggerInterface $oLogger
29
     */
30
    public function __construct(
31
        JobIndexServiceInterface $oJobIndexService,
32
        JobRepositoryInterface $oJobRepositoryRemote,
33
        JobRepositoryInterface $oJobRepositoryLocal,
34
        JobComparisonInterface $oJobComparisonBusinessCase,
35
        LoggerInterface $oLogger
36
37
    )
38
    {
39
40
        $this->oJobIndexService = $oJobIndexService;
41
        $this->oLogger = $oLogger;
42
        $this->oJobComparisonBusinessCase = $oJobComparisonBusinessCase;
43
        $this->oJobRepositoryRemote = $oJobRepositoryRemote;
44
        $this->oJobRepositoryLocal = $oJobRepositoryLocal;
45
    }
46
47
    /**
48
     * @return void