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.
Completed
Push — master ( 7ae63c...282e2f )
by Brent
02:01
created
src/Period.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     }
29 29
 
30 30
     /**
31
-     * @param \DateTimeInterface|string $start
31
+     * @param DateTimeImmutable $start
32 32
      * @param \DateTimeInterface|string $end
33 33
      * @param string|null $format
34 34
      *
@@ -50,6 +50,9 @@  discard block
 block discarded – undo
50 50
         );
51 51
     }
52 52
 
53
+    /**
54
+     * @param null|string $format
55
+     */
53 56
     protected static function resolveDate($date, ?string $format): DateTimeImmutable
54 57
     {
55 58
         if ($date instanceof DateTimeImmutable) {
@@ -260,6 +263,7 @@  discard block
 block discarded – undo
260 263
 
261 264
     /**
262 265
      * @param \Spatie\Period\Period ...$periods
266
+     * @param Period[] $periods
263 267
      *
264 268
      * @return \Spatie\Period\Period|static
265 269
      */
Please login to merge, or discard this patch.