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
07:59
created
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 Refund[] $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 Shipment[] $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/TrackingStatus.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
      *
17 17
      * @return \DateTime
18 18
      */
19
-    public function getObjectCreated()
19
+    public function getObjectCreated ()
20 20
     {
21 21
         return $this->attributes->mayHave('object_created')->asInstanceOf('\\DateTime');
22 22
     }
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @return \DateTime
28 28
      */
29
-    public function getObjectUpdated()
29
+    public function getObjectUpdated ()
30 30
     {
31 31
         return $this->attributes->mayHave('object_updated')->asInstanceOf('\\DateTime');
32 32
     }
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      *
37 37
      * @return string
38 38
      */
39
-    public function getObjectId()
39
+    public function getObjectId ()
40 40
     {
41 41
         return $this->attributes->mayHave('object_id')->asString();
42 42
     }
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      *
55 55
      * @return string
56 56
      */
57
-    public function getStatus()
57
+    public function getStatus ()
58 58
     {
59 59
         return $this->attributes->mayHave('status')->asString();
60 60
     }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     /**
63 63
      * @return Location
64 64
      */
65
-    public function getLocation()
65
+    public function getLocation ()
66 66
     {
67 67
         $attributes = $this->attributes->mayHave('location')->asArray();
68 68
         return new Location($attributes);
Please login to merge, or discard this patch.
src/Entity/ObjectInformation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      *
20 20
      * @return \DateTime
21 21
      */
22
-    public function getObjectCreated()
22
+    public function getObjectCreated ()
23 23
     {
24 24
         return $this->attributes->mayHave('object_created')->asInstanceOf('\\DateTime');
25 25
     }
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      *
30 30
      * @return \DateTime
31 31
      */
32
-    public function getObjectUpdated()
32
+    public function getObjectUpdated ()
33 33
     {
34 34
         return $this->attributes->mayHave('object_updated')->asInstanceOf('\\DateTime');
35 35
     }
Please login to merge, or discard this patch.
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/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 TrackingStatus[] $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/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.