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 (#14)
by Sho
02:31
created
src/Entity/Address.php 1 patch
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.
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/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.
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.