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 ( 2b27f2...2c3117 )
by Sho
9s
created
src/Entity/EntityCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 abstract class EntityCollection extends \ArrayObject
6 6
 {
7
-    public function toArray()
7
+    public function toArray ()
8 8
     {
9 9
         $ret = [];
10 10
         /** @var Entity $entity */
Please login to merge, or discard this patch.
src/Entity/Address.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
         mayHaveAsArray  as public getMessages;
25 25
     }
26 26
 
27
-    public function getIsResidential()
27
+    public function getIsResidential ()
28 28
     {
29 29
         $is_residential = $this->attributes->mayHave('is_residential')->value();
30 30
         if ($is_residential === null) {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use ShippoClient\Entity\Parcel;
6 6
 use ShippoClient\Entity\ParcelCollection;
7
-use TurmericSpice\Container;
8 7
 
9 8
 class ParcelList extends ListResponse
10 9
 {
Please login to merge, or discard this patch.
src/Entity/AddressCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
     /**
8 8
      * @param Address[] $entities
9 9
      */
10
-    public function __construct(array $entities)
10
+    public function __construct (array $entities)
11 11
     {
12 12
         parent::__construct($entities);
13 13
     }
Please login to merge, or discard this patch.
src/Http/Response/AddressList.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use ShippoClient\Entity\Parcel;
6 6
 use ShippoClient\Entity\ParcelCollection;
7
-use TurmericSpice\Container;
8 7
 
9 8
 class ParcelList extends ListResponse
10 9
 {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     /**
11 11
      * @return RefundCollection
12 12
      */
13
-    public function getResults()
13
+    public function getResults ()
14 14
     {
15 15
         $entities = [];
16 16
         foreach ($this->attributes->mayHave('results')->asArray() as $attributes) {
Please login to merge, or discard this patch.
src/Entity/ParcelCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
     /**
8 8
      * @param Address[] $entities
9 9
      */
10
-    public function __construct(array $entities)
10
+    public function __construct (array $entities)
11 11
     {
12 12
         parent::__construct($entities);
13 13
     }
Please login to merge, or discard this patch.
src/Entity/RateCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
     /**
8 8
      * @param Address[] $entities
9 9
      */
10
-    public function __construct(array $entities)
10
+    public function __construct (array $entities)
11 11
     {
12 12
         parent::__construct($entities);
13 13
     }
Please login to merge, or discard this patch.
src/Entity/RefundCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
     /**
8 8
      * @param Address[] $entities
9 9
      */
10
-    public function __construct(array $entities)
10
+    public function __construct (array $entities)
11 11
     {
12 12
         parent::__construct($entities);
13 13
     }
Please login to merge, or discard this patch.
src/Entity/ShipmentCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
     /**
8 8
      * @param Address[] $entities
9 9
      */
10
-    public function __construct(array $entities)
10
+    public function __construct (array $entities)
11 11
     {
12 12
         parent::__construct($entities);
13 13
     }
Please login to merge, or discard this patch.
src/Entity/TrackingHistory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
     /**
8 8
      * @param Address[] $entities
9 9
      */
10
-    public function __construct(array $entities)
10
+    public function __construct (array $entities)
11 11
     {
12 12
         parent::__construct($entities);
13 13
     }
Please login to merge, or discard this patch.