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.
Passed
Push — develop ( a94b80...f507c7 )
by nguereza
01:38
created
src/File/File.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -112,16 +112,16 @@  discard block
 block discarded – undo
112 112
     }
113 113
 
114 114
     /**
115
-    * {@inheritdoc}
116
-    */
115
+     * {@inheritdoc}
116
+     */
117 117
     public function getExtension(): string
118 118
     {
119 119
         return $this->extension;
120 120
     }
121 121
 
122 122
     /**
123
-    * {@inheritdoc}
124
-    */
123
+     * {@inheritdoc}
124
+     */
125 125
     public function setExtension(string $name): self
126 126
     {
127 127
         $this->extension = strtolower($name);
@@ -130,8 +130,8 @@  discard block
 block discarded – undo
130 130
     }
131 131
 
132 132
     /**
133
-    * {@inheritdoc}
134
-    */
133
+     * {@inheritdoc}
134
+     */
135 135
     public function getFullName(): string
136 136
     {
137 137
         return $this->extension === '' ?
@@ -140,8 +140,8 @@  discard block
 block discarded – undo
140 140
     }
141 141
 
142 142
     /**
143
-    * {@inheritdoc}
144
-    */
143
+     * {@inheritdoc}
144
+     */
145 145
     public function getMD5(): string
146 146
     {
147 147
         $hash = md5_file($this->getPathname());
@@ -149,24 +149,24 @@  discard block
 block discarded – undo
149 149
     }
150 150
 
151 151
     /**
152
-    * {@inheritdoc}
153
-    */
152
+     * {@inheritdoc}
153
+     */
154 154
     public function getPathname(): string
155 155
     {
156 156
         return parent::getPathname();
157 157
     }
158 158
 
159 159
     /**
160
-    * {@inheritdoc}
161
-    */
160
+     * {@inheritdoc}
161
+     */
162 162
     public function getSize(): int
163 163
     {
164 164
         return parent::getSize();
165 165
     }
166 166
 
167 167
     /**
168
-    * {@inheritdoc}
169
-    */
168
+     * {@inheritdoc}
169
+     */
170 170
     public function getMimeType(): string
171 171
     {
172 172
         if (empty($this->mimeType)) {
@@ -185,16 +185,16 @@  discard block
 block discarded – undo
185 185
     }
186 186
 
187 187
     /**
188
-    * {@inheritdoc}
189
-    */
188
+     * {@inheritdoc}
189
+     */
190 190
     public function getName(): string
191 191
     {
192 192
         return $this->name;
193 193
     }
194 194
 
195 195
     /**
196
-    * {@inheritdoc}
197
-    */
196
+     * {@inheritdoc}
197
+     */
198 198
     public function setName(string $name): self
199 199
     {
200 200
         $cleanName = preg_replace('/[^A-Za-z0-9\.]+/', '_', $name);
@@ -207,8 +207,8 @@  discard block
 block discarded – undo
207 207
     }
208 208
 
209 209
     /**
210
-    * {@inheritdoc}
211
-    */
210
+     * {@inheritdoc}
211
+     */
212 212
     public function getError(): int
213 213
     {
214 214
         return $this->error;
Please login to merge, or discard this patch.
src/Upload.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -146,8 +146,8 @@
 block discarded – undo
146 146
     }
147 147
 
148 148
     /**
149
-    * Whether the file is uploaded
150
-    */
149
+     * Whether the file is uploaded
150
+     */
151 151
     public function isUploaded(): bool
152 152
     {
153 153
         return count($this->files) > 0
Please login to merge, or discard this patch.