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 ( b33927...aa560e )
by Brent
01:23
created
src/Period.php 1 patch
Doc Comments   +7 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) {
@@ -255,6 +258,7 @@  discard block
 block discarded – undo
255 258
 
256 259
     /**
257 260
      * @param \Spatie\Period\Period ...$periods
261
+     * @param Period[] $periods
258 262
      *
259 263
      * @return \Spatie\Period\PeriodCollection|static[]
260 264
      */
@@ -271,6 +275,7 @@  discard block
 block discarded – undo
271 275
 
272 276
     /**
273 277
      * @param \Spatie\Period\Period ...$periods
278
+     * @param Period[] $periods
274 279
      *
275 280
      * @return \Spatie\Period\Period|static
276 281
      */
@@ -329,6 +334,7 @@  discard block
 block discarded – undo
329 334
 
330 335
     /**
331 336
      * @param \Spatie\Period\Period ...$periods
337
+     * @param Period[] $periods
332 338
      *
333 339
      * @return \Spatie\Period\PeriodCollection|static[]
334 340
      */
Please login to merge, or discard this patch.