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 ( 09a29f...5af058 )
by Tarun
45s
created
views/_dropIndexes.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 /* @var $table string the name table */
3 3
 /* @var $indexes array the foreign keys */
4 4
 
5
-if($indexes){
5
+if ($indexes) {
6 6
         foreach ($indexes as $key => $index): ?>
7 7
                 $this->dropIndex('<?= $key ?>', $this->tableName);
8 8
         <?php endforeach;
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 /* @var $table string the name table */
3 3
 /* @var $indexes array the foreign keys */
4 4
 
5
-if($indexes){
5
+if($indexes) {
6 6
         foreach ($indexes as $key => $index): ?>
7 7
                 $this->dropIndex('<?= $key ?>', $this->tableName);
8 8
         <?php endforeach;
Please login to merge, or discard this patch.
views/_addIndexes.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,16 +8,16 @@
 block discarded – undo
8 8
 
9 9
 //dd( $indexes );
10 10
 
11
-if($indexes){
11
+if ($indexes) {
12 12
         foreach ($indexes as $index):
13
-        if(is_string($index['Column_name'])): ?>
14
-        <?php if($index['Non_unique'] == 0): ?>
13
+        if (is_string($index['Column_name'])): ?>
14
+        <?php if ($index['Non_unique'] == 0): ?>
15 15
                 $this->createIndex('<?= str_replace('_UNIQUE', '', $index['Key_name'])?>', $this->tableName, '<?= $index['Column_name'] ?>', true);
16 16
         <?php else: ?>
17 17
                 $this->createIndex('<?= $index['Key_name']  ?>', $this->tableName, '<?= $index['Column_name'] ?>');
18 18
         <?php endif; ?>
19 19
         <?php else: ?>
20
-                $this->createIndex('<?= $index['Key_name']  ?>', $this->tableName, ['<?= implode("','",$index['Column_name']) ?>']);
20
+                $this->createIndex('<?= $index['Key_name']  ?>', $this->tableName, ['<?= implode("','", $index['Column_name']) ?>']);
21 21
         <?php endif; ?>
22 22
         <?php endforeach;
23 23
 }
Please login to merge, or discard this patch.
Braces   +11 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,16 +8,22 @@
 block discarded – undo
8 8
 
9 9
 //dd( $indexes );
10 10
 
11
-if($indexes){
11
+if($indexes) {
12 12
         foreach ($indexes as $index):
13 13
         if(is_string($index['Column_name'])): ?>
14 14
         <?php if($index['Non_unique'] == 0): ?>
15 15
                 $this->createIndex('<?= str_replace('_UNIQUE', '', $index['Key_name'])?>', $this->tableName, '<?= $index['Column_name'] ?>', true);
16
-        <?php else: ?>
16
+        <?php else {
17
+    : ?>
17 18
                 $this->createIndex('<?= $index['Key_name']  ?>', $this->tableName, '<?= $index['Column_name'] ?>');
18
-        <?php endif; ?>
19
-        <?php else: ?>
19
+        <?php endif;
20
+}
21
+?>
22
+        <?php else {
23
+    : ?>
20 24
                 $this->createIndex('<?= $index['Key_name']  ?>', $this->tableName, ['<?= implode("','",$index['Column_name']) ?>']);
21
-        <?php endif; ?>
25
+        <?php endif;
26
+}
27
+?>
22 28
         <?php endforeach;
23 29
 }
Please login to merge, or discard this patch.