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 ( a2bb11...f0f593 )
by Samuel
03:12
created
src/Core/Exception/UnexpectedErrorException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types=1);
1
+<?php declare (strict_types = 1);
2 2
 /**
3 3
  * @license MIT
4 4
  * @author Samuel Adeshina <[email protected]>
Please login to merge, or discard this patch.
src/Core/Exception/SQLException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types=1);
1
+<?php declare (strict_types = 1);
2 2
 /**
3 3
  * @license MIT
4 4
  * @author Samuel Adeshina <[email protected]>
Please login to merge, or discard this patch.
src/Core/Exception/UndefinedValueException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare (strict_types=1);
1
+<?php declare (strict_types = 1);
2 2
 /**
3 3
  * @license MIT
4 4
  * @author Samuel Adeshina <[email protected]>
Please login to merge, or discard this patch.
src/Core/Factory/DatabaseQueryFactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /**
3 3
  * @license MIT
4 4
  * @author Samuel Adeshina <[email protected]>
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 {
30 30
     public static function insert(string $table, array $data)
31 31
     {
32
-        $insertBuilder = (new Builder("QueryBuilder","Insert"))->getBuilder();
32
+        $insertBuilder = (new Builder("QueryBuilder", "Insert"))->getBuilder();
33 33
         $columns = [];
34 34
         $values = [];
35 35
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         $values = "(".implode(", ", $values).")";
44 44
         $insertBuilder->into($table.$columns);
45 45
 
46
-        $query = (string)$insertBuilder." VALUES ".$values;
46
+        $query = (string) $insertBuilder." VALUES ".$values;
47 47
         try
48 48
         {
49 49
             $parts = explode(".", $table);
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
             $connection = DBConnectionFactory::getConnection();
54 54
 
55
-            $result = $connection->prepare((string)$query)->execute();
55
+            $result = $connection->prepare((string) $query)->execute();
56 56
 
57 57
             DatabaseLog::log(Session::get('USER_ID'), Constant::EVENT_INSERT, $schemaName, $tableName, $query);
58 58
 
Please login to merge, or discard this patch.
src/Core/Factory/ElasticSearchClientFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /**
3 3
  * @license MIT
4 4
  * @author Samuel Adeshina <[email protected]>
Please login to merge, or discard this patch.