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 (#8)
by Sho
03:44
created
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.
src/Entity/TransactionCollection.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/Request/Shipments/CreateObjectByNested.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 
8 8
 class CreateObjectByNested extends CreateObject
9 9
 {
10
-    public function getAddressFrom()
10
+    public function getAddressFrom ()
11 11
     {
12 12
         $addressFrom = $this->attributes->mustHave('address_from')->asArray();
13 13
         $addressFromObj = new AddressCreate($addressFrom);
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
         return $addressFromObj->toArray();
16 16
     }
17 17
 
18
-    public function getAddressTo()
18
+    public function getAddressTo ()
19 19
     {
20 20
         $addressTo = $this->attributes->mustHave('address_to')->asArray();
21 21
         $addressToObj = new AddressCreate($addressTo);
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         return $addressToObj->toArray();
24 24
     }
25 25
 
26
-    public function getParcel()
26
+    public function getParcel ()
27 27
     {
28 28
         $parcel = $this->attributes->mustHave('parcel')->asArray();
29 29
         $parcelObj = new ParcelCreate($parcel);
Please login to merge, or discard this patch.
src/Http/Response/RateList.php 1 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/Http/Response/ShipmentList.php 1 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/Http/Response/TransactionList.php 1 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.