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 ( 6c2a86...45b6a3 )
by Samuel
03:03
created
src/Core/Exception/Exception.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/Connection/Adapters/SQLite.php 1 patch
Spacing   +2 added lines, -2 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]>
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      * @throws \EmmetBlue\Core\Exception\SQLException
61 61
      * @return void
62 62
      */
63
-    public function connect(string $username="", string $password="")
63
+    public function connect(string $username = "", string $password = "")
64 64
     {
65 65
         $dbLocation = $this->dsn[0];
66 66
 
Please login to merge, or discard this patch.
src/Core/Logger/ErrorLog.php 1 patch
Spacing   +3 added lines, -3 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]>
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
  */
23 23
 class ErrorLog implements LogInterface
24 24
 {
25
-    public static function log(int $databaseUserId, string $errorNumber, string $errorSeverity, string $errorMessage, string $errorObject=null)
25
+    public static function log(int $databaseUserId, string $errorNumber, string $errorSeverity, string $errorMessage, string $errorObject = null)
26 26
     {
27 27
         /**
28 28
          * For now I am not doing anything with $errorObject yet.
@@ -54,6 +54,6 @@  discard block
 block discarded – undo
54 54
                 QB::wrapString($errorMessage, "'")
55 55
             ]);
56 56
             
57
-        DBConnectionFactory::getConnection()->query((string)$insertBuilder);
57
+        DBConnectionFactory::getConnection()->query((string) $insertBuilder);
58 58
     }
59 59
 }
Please login to merge, or discard this patch.
src/Core/Logger/DatabaseLog.php 1 patch
Spacing   +3 added lines, -3 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]>
@@ -41,13 +41,13 @@  discard block
 block discarded – undo
41 41
                 ->values([
42 42
                     'GETDATE()',
43 43
                     QB::wrapString($databaseUserId, "'"),
44
-                    QB::wrapString((string)$event, "'"),
44
+                    QB::wrapString((string) $event, "'"),
45 45
                     QB::wrapString($objectSchema, "'"),
46 46
                     QB::wrapString($object, "'"),
47 47
                     QB::wrapString(str_replace("'", "\"", $tSql), "'")
48 48
                 ]);
49 49
 
50
-            DBConnectionFactory::getConnection()->query((string)$insertBuilder);
50
+            DBConnectionFactory::getConnection()->query((string) $insertBuilder);
51 51
         } catch (\PDOException $e) {
52 52
             echo $e->getMessage();
53 53
             throw new SQLException(sprintf(
Please login to merge, or discard this patch.
src/Core/Logger/LogInterface.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/Constant.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/Validator/ValidatorAdapter.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/Validator/ValidatorInterface.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/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.