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 ( 418d78...2b27f2 )
by Sho
7s
created
src/Entity/Transaction.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      *
33 33
      * @return string
34 34
      */
35
-    public function getObjectStatus()
35
+    public function getObjectStatus ()
36 36
     {
37 37
         return $this->attributes->mayHave('object_status')->asString();
38 38
     }
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      *
43 43
      * @return bool
44 44
      */
45
-    public function getWasTest()
45
+    public function getWasTest ()
46 46
     {
47 47
         return $this->attributes->mayHave('was_test')->asBoolean();
48 48
     }
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      *
53 53
      * @return string
54 54
      */
55
-    public function getRate()
55
+    public function getRate ()
56 56
     {
57 57
         return $this->attributes->mayHave('rate')->asString();
58 58
     }
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      *
64 64
      * @return string
65 65
      */
66
-    public function getTrackingNumber()
66
+    public function getTrackingNumber ()
67 67
     {
68 68
         return $this->attributes->mayHave('tracking_number')->asString();
69 69
     }
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      *
74 74
      * @return TrackingStatus
75 75
      */
76
-    public function getTrackingStatus()
76
+    public function getTrackingStatus ()
77 77
     {
78 78
         return new TrackingStatus($this->attributes->mayHave('tracking_status')->asArray());
79 79
     }
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     /**
82 82
      * @return TrackingHistory
83 83
      */
84
-    public function getTrackingHistory()
84
+    public function getTrackingHistory ()
85 85
     {
86 86
         $entities = $this->attributes->mayHave('tracking_history')
87 87
             ->asInstanceArray('ShippoClient\\Entity\\TrackingStatus');
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      *
96 96
      * @return string
97 97
      */
98
-    public function getTrackingUrlProvider()
98
+    public function getTrackingUrlProvider ()
99 99
     {
100 100
         return $this->attributes->mayHave('tracking_url_provider')->asString();
101 101
     }
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
      *
107 107
      * @return string
108 108
      */
109
-    public function getLabelUrl()
109
+    public function getLabelUrl ()
110 110
     {
111 111
         return $this->attributes->mayHave('label_url')->asString();
112 112
     }
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      *
118 118
      * @return string
119 119
      */
120
-    public function getCommercialInvoiceUrl()
120
+    public function getCommercialInvoiceUrl ()
121 121
     {
122 122
         return $this->attributes->mayHave('commercial_invoice_url')->asString();
123 123
     }
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
      *
130 130
      * @return array
131 131
      */
132
-    public function getMessages()
132
+    public function getMessages ()
133 133
     {
134 134
         return $this->attributes->mayHave('messages')->asArray();
135 135
     }
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     /**
138 138
      * @return mixed|null
139 139
      */
140
-    public function getOrder()
140
+    public function getOrder ()
141 141
     {
142 142
         return $this->attributes->mayHave('order')->value();
143 143
     }
@@ -145,12 +145,12 @@  discard block
 block discarded – undo
145 145
     /**
146 146
      * @return string
147 147
      */
148
-    public function getMetadata()
148
+    public function getMetadata ()
149 149
     {
150 150
         return $this->attributes->mayHave('metadata')->asString();
151 151
     }
152 152
 
153
-    public function toArray()
153
+    public function toArray ()
154 154
     {
155 155
         $array = $this->__toArray();
156 156
         $array['tracking_status'] = $this->getTrackingStatus()->toArray();
Please login to merge, or discard this patch.
src/Entity/Tracks.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     /**
17 17
      * @return \ShippoClient\Entity\TrackingStatus
18 18
      */
19
-    public function getTrackingStatus()
19
+    public function getTrackingStatus ()
20 20
     {
21 21
         return $this->attributes->mayHave('tracking_status')
22 22
             ->asInstanceOf('\\ShippoClient\\Entity\\TrackingStatus');
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     /**
26 26
      * @return \ShippoClient\Entity\TrackingHistory
27 27
      */
28
-    public function getTrackingHistory()
28
+    public function getTrackingHistory ()
29 29
     {
30 30
         $entities = $this->attributes->mayHave('tracking_history')
31 31
             ->asInstanceArray('ShippoClient\\Entity\\TrackingStatus');
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     /**
37 37
      * @return \ShippoClient\Entity\Location
38 38
      */
39
-    public function getAddressFrom()
39
+    public function getAddressFrom ()
40 40
     {
41 41
         return $this->attributes->mayHave('address_from')->asInstanceOf('\\ShippoClient\\Entity\\Location');
42 42
     }
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     /**
45 45
      * @return \ShippoClient\Entity\Location
46 46
      */
47
-    public function getAddressTo()
47
+    public function getAddressTo ()
48 48
     {
49 49
         return $this->attributes->mayHave('address_to')->asInstanceOf('\\ShippoClient\\Entity\\Location');
50 50
     }
@@ -52,12 +52,12 @@  discard block
 block discarded – undo
52 52
     /**
53 53
      * @return \ShippoClient\Entity\ServiceLevel
54 54
      */
55
-    public function getServiceLevel()
55
+    public function getServiceLevel ()
56 56
     {
57 57
         return $this->attributes->mayHave('servicelevel')->asInstanceOf('\\ShippoClient\\Entity\\ServiceLevel');
58 58
     }
59 59
 
60
-    public function toArray()
60
+    public function toArray ()
61 61
     {
62 62
         return [
63 63
             'carrier'          => $this->getCarrier(),
Please login to merge, or discard this patch.
src/Entity/WebhookTracks.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      *
39 39
      * @return \DateTime
40 40
      */
41
-    public function getObjectCreated()
41
+    public function getObjectCreated ()
42 42
     {
43 43
         return $this->attributes->mayHave('object_created')->asInstanceOf('\\DateTime');
44 44
     }
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      *
49 49
      * @return \DateTime
50 50
      */
51
-    public function getObjectUpdated()
51
+    public function getObjectUpdated ()
52 52
     {
53 53
         return $this->attributes->mayHave('object_updated')->asInstanceOf('\\DateTime');
54 54
     }
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      *
59 59
      * @return \ShippoClient\Entity\Location
60 60
      */
61
-    public function getAddressFrom()
61
+    public function getAddressFrom ()
62 62
     {
63 63
         $addressFrom = $this->attributes->mayHave('address_from')->asArray();
64 64
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      *
71 71
      * @return \ShippoClient\Entity\Location
72 72
      */
73
-    public function getAddressTo()
73
+    public function getAddressTo ()
74 74
     {
75 75
         $addressTo = $this->attributes->mayHave('address_to')->asArray();
76 76
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      *
83 83
      * @return \ShippoClient\Entity\ServiceLevel
84 84
      */
85
-    public function getServiceLevel()
85
+    public function getServiceLevel ()
86 86
     {
87 87
         $serviceLevel = $this->attributes->mayHave('servicelevel')->asArray();
88 88
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      *
95 95
      * @return \ShippoClient\Entity\TrackingStatus
96 96
      */
97
-    public function getTrackingStatus()
97
+    public function getTrackingStatus ()
98 98
     {
99 99
         return new TrackingStatus($this->attributes->mayHave('tracking_status')->asArray());
100 100
     }
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      *
105 105
      * @return \ShippoClient\Entity\TrackingHistory
106 106
      */
107
-    public function getTrackingHistory()
107
+    public function getTrackingHistory ()
108 108
     {
109 109
         $entities = $this->attributes->mayHave('tracking_history')
110 110
             ->asInstanceArray('ShippoClient\\Entity\\TrackingStatus');
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         return new TrackingHistory($entities);
113 113
     }
114 114
 
115
-    public function toArray()
115
+    public function toArray ()
116 116
     {
117 117
         return [
118 118
             // tracks
Please login to merge, or discard this patch.