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 ( 987b7e...6c9db9 )
by Brent
26s queued 10s
created
src/Period.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -325,6 +325,7 @@  discard block
 block discarded – undo
325 325
 
326 326
     /**
327 327
      * @param \Spatie\Period\Period ...$periods
328
+     * @param Period[] $periods
328 329
      *
329 330
      * @return \Spatie\Period\PeriodCollection|static[]
330 331
      */
@@ -347,6 +348,7 @@  discard block
 block discarded – undo
347 348
 
348 349
     /**
349 350
      * @param \Spatie\Period\Period ...$periods
351
+     * @param Period[] $periods
350 352
      *
351 353
      * @return \Spatie\Period\Period|static
352 354
      */
@@ -409,6 +411,7 @@  discard block
 block discarded – undo
409 411
 
410 412
     /**
411 413
      * @param \Spatie\Period\Period ...$periods
414
+     * @param Period[] $periods
412 415
      *
413 416
      * @return \Spatie\Period\PeriodCollection|static[]
414 417
      */
@@ -447,6 +450,9 @@  discard block
 block discarded – undo
447 450
         );
448 451
     }
449 452
 
453
+    /**
454
+     * @param string|null $format
455
+     */
450 456
     protected static function resolveDate($date, ?string $format): DateTimeImmutable
451 457
     {
452 458
         if ($date instanceof DateTimeImmutable) {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
 use DateTimeImmutable;
9 9
 use DateTimeInterface;
10 10
 use IteratorAggregate;
11
+use Spatie\Period\Exceptions\CannotComparePeriods;
11 12
 use Spatie\Period\Exceptions\InvalidDate;
12 13
 use Spatie\Period\Exceptions\InvalidPeriod;
13
-use Spatie\Period\Exceptions\CannotComparePeriods;
14 14
 
15 15
 class Period implements IteratorAggregate
16 16
 {
Please login to merge, or discard this patch.