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

tests/src/Period/IsochronicTest.php 1 location

@@ 75-81 (lines=7) @@
72
     * @param string $startDate
73
     * @param string $endDate
74
     */
75
    public function testIsoChronicDecrease($date, $referenceDate, $length, $startDate, $endDate)
76
    {
77
        $isoChronic = new IsoChronic($date, $referenceDate, $length);
78
        $isoChronic->previous();
79
        $this->assertEquals($startDate, $isoChronic->getStartDate());
80
        $this->assertEquals($endDate, $isoChronic->getEndDate());
81
    }
82
83
    public function isoChronicDecreaseProvider()
84
    {

tests/src/Period/MonthTest.php 1 location

@@ 83-90 (lines=8) @@
80
     * @param string $startDate
81
     * @param string $endDate
82
     */
83
    public function testPreviousMonth($date, $startDate, $endDate)
84
    {
85
        $month = new Month($date);
86
        $month->previous();
87
88
        $this->assertEquals($startDate, $month->getStartDate());
89
        $this->assertEquals($endDate, $month->getEndDate());
90
    }
91
92
    /**
93
     * @return array