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
Pull Request — master (#51)
by
unknown
01:10
created
src/Period.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -419,6 +419,7 @@  discard block
 block discarded – undo
419 419
 
420 420
     /**
421 421
      * @param Period ...$periods
422
+     * @param Period[] $periods
422 423
      * @return PeriodCollection
423 424
      * @throws CannotComparePeriods
424 425
      */
@@ -441,6 +442,7 @@  discard block
 block discarded – undo
441 442
 
442 443
     /**
443 444
      * @param Period ...$periods
445
+     * @param Period[] $periods
444 446
      * @return Period
445 447
      * @throws CannotComparePeriods
446 448
      */
@@ -508,6 +510,7 @@  discard block
 block discarded – undo
508 510
 
509 511
     /**
510 512
      * @param Period ...$periods
513
+     * @param Period[] $periods
511 514
      * @return PeriodCollection
512 515
      * @throws CannotComparePeriods
513 516
      */
Please login to merge, or discard this patch.
src/PeriodCollection.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -16,6 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
     /**
18 18
      * @param \Spatie\Period\Period ...$periods
19
+     * @param Period[] $periods
19 20
      *
20 21
      * @return static
21 22
      */
@@ -27,6 +28,7 @@  discard block
 block discarded – undo
27 28
     /**
28 29
      * PeriodCollection constructor.
29 30
      * @param Period ...$periods
31
+     * @param Period[] $periods
30 32
      */
31 33
     public function __construct(Period ...$periods)
32 34
     {
@@ -65,6 +67,7 @@  discard block
 block discarded – undo
65 67
 
66 68
     /**
67 69
      * @param PeriodCollection ...$periodCollections
70
+     * @param PeriodCollection[] $periodCollections
68 71
      * @return PeriodCollection
69 72
      * @throws Exceptions\CannotComparePeriods
70 73
      */
@@ -151,6 +154,7 @@  discard block
 block discarded – undo
151 154
 
152 155
     /**
153 156
      * @param Period ...$periods
157
+     * @param Period[] $periods
154 158
      * @return PeriodCollection
155 159
      */
156 160
     public function add(Period ...$periods): PeriodCollection
Please login to merge, or discard this patch.