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.
Passed
Push — master ( 07b164...660df5 )
by Kristjan
36s
created
src/Iterator/ChronoIterator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-     * @return \DateTime
41
+     * @return string
42 42
      */
43 43
     public function current()
44 44
     {
Please login to merge, or discard this patch.
src/Evaluator/DayOfWeek.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
             throw new \OutOfBoundsException('Day of week greater than 7');
41 41
         }
42 42
 
43
-        $this->weekday = (int)$dayOfWeek;
43
+        $this->weekday = (int) $dayOfWeek;
44 44
     }
45 45
 
46 46
     /**
@@ -49,6 +49,6 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function is($date)
51 51
     {
52
-        return (int)date('N', strtotime($date)) === $this->weekday;
52
+        return (int) date('N', strtotime($date)) === $this->weekday;
53 53
     }
54 54
 }
Please login to merge, or discard this patch.
src/Period/Month.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,8 +75,8 @@
 block discarded – undo
75 75
      */
76 76
     private function setFromTimestamp($timestamp)
77 77
     {
78
-        $this->year = (int)date('Y', $timestamp);
79
-        $this->month = (int)date('n', $timestamp);
80
-        $this->daysInMonth = (int)date('t', strtotime($this->getStartDate()));
78
+        $this->year = (int) date('Y', $timestamp);
79
+        $this->month = (int) date('n', $timestamp);
80
+        $this->daysInMonth = (int) date('t', strtotime($this->getStartDate()));
81 81
     }
82 82
 }
Please login to merge, or discard this patch.