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 ( b8aa14...4c5b44 )
by Brad
06:01
created
docs/views/method.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@  discard block
 block discarded – undo
7 7
 
8 8
 ## Description
9 9
 `<?= $this->v('method.return.type') ?> <?= $this->v('method.name') ?>
10
-(<?php foreach($this->a('method.parameters') as $x => $parameter): ?>
10
+(<?php foreach ($this->a('method.parameters') as $x => $parameter): ?>
11 11
 <?= $parameter['type'] ?> $<?= $parameter['name'] ?>
12 12
 <?php if ($parameter['default'] != ''): ?> = <?php if ($parameter['type'] == 'string'): ?>'<?php endif; ?>
13 13
 <?= $parameter['default'] ?><?php if ($parameter['type'] == 'string'): ?>'<?php endif; ?><?php endif; ?>
14
-<?php if ($x+1 < count($this->a('method.parameters'))): ?>, <?php endif; ?>
14
+<?php if ($x + 1 < count($this->a('method.parameters'))): ?>, <?php endif; ?>
15 15
 <?php endforeach; ?>)`
16 16
 <?php if ($this->v('method.description') != ''): ?>
17 17
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 
22 22
 <?php if (count($this->a('method.parameters')) > 0): ?>
23 23
 ### Parameters
24
-<?php foreach($this->a('method.parameters') as $parameter): ?>
24
+<?php foreach ($this->a('method.parameters') as $parameter): ?>
25 25
 * _<?= $parameter['type'] ?>_ __$<?= $parameter['name'] ?>__<?= '  ' ?>
26 26
 
27 27
 <?= $parameter['description'] ?>
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
 <?php if (count($this->a('method.exceptions')) > 0): ?>
39 39
 ### Errors/Exceptions
40
-<?php foreach($this->a('method.exceptions') as $exception): ?>
40
+<?php foreach ($this->a('method.exceptions') as $exception): ?>
41 41
 * _<?= $exception['type'] ?>_<?= '  ' ?>
42 42
 
43 43
 <?= $exception['description'] ?>
Please login to merge, or discard this patch.