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 ( fbb30b...8f4bd7 )
by Brent
9s
created
src/PeriodCollection.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Period;
4 4
 
5
-use Iterator;
6
-use Countable;
7 5
 use ArrayAccess;
6
+use Countable;
7
+use Iterator;
8 8
 
9 9
 class PeriodCollection implements ArrayAccess, Iterator, Countable
10 10
 {
Please login to merge, or discard this patch.
src/Period.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Period;
4 4
 
5
-use DateTime;
6 5
 use DateInterval;
6
+use DateTime;
7 7
 use DateTimeImmutable;
8 8
 use DateTimeInterface;
9
+use Spatie\Period\Exceptions\CannotComparePeriods;
9 10
 use Spatie\Period\Exceptions\InvalidDate;
10 11
 use Spatie\Period\Exceptions\InvalidPeriod;
11
-use Spatie\Period\Exceptions\CannotComparePeriods;
12 12
 
13 13
 class Period
14 14
 {
Please login to merge, or discard this patch.