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/DirtChecker.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,7 @@
 block discarded – undo
35 35
                 }
36 36
             }
37 37
             $this->workingConditions = $conditions;
38
-        }
39
-        else {
38
+        } else {
40 39
             $this->workingConditions = $this->dirtFilterConditions;
41 40
         }
42 41
     }
Please login to merge, or discard this patch.
src/Core/Logger/ErrorLog.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 use EmmetBlue\Core\Builder\BuilderFactory as Builder;
12 12
 use EmmetBlue\Core\Factory\DatabaseConnectionFactory as DBConnectionFactory;
13 13
 use EmmetBlue\Core\Builder\QueryBuilder\QueryBuilder as QB;
14
-use EmmetBlue\Core\Exception\SQLException;
15 14
 
16 15
 /**
17 16
  * Class ErrorLog
Please login to merge, or discard this patch.
src/Core/Connection/Adapters/SQLServer.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,8 +71,7 @@
 block discarded – undo
71 71
         try
72 72
         {
73 73
             $this->connectionObject = new \PDO("sqlsrv:Server=$server;Database=$database;ConnectionPooling=0", $username, $password);
74
-        }
75
-        catch (\PDOException $e)
74
+        } catch (\PDOException $e)
76 75
         {
77 76
             throw new SQLException("Unable to connect to database", 400, $e);  
78 77
         }
Please login to merge, or discard this patch.
src/Core/Connection/Adapters/SQLite.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,8 +67,7 @@
 block discarded – undo
67 67
         try
68 68
         {
69 69
             $this->connectionObject = new \PDO("sqlite:$dbLocation");
70
-        }
71
-        catch (\PDOException $e)
70
+        } catch (\PDOException $e)
72 71
         {
73 72
             throw new SQLException("Unable to connect to database", 400, $e);  
74 73
         }
Please login to merge, or discard this patch.
src/Core/Factory/DatabaseQueryFactory.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,8 +60,7 @@
 block discarded – undo
60 60
             $lastInsertId = ($connection->query("SELECT CAST(COALESCE(SCOPE_IDENTITY(), @@IDENTITY) AS int) as id")->fetchColumn());
61 61
 
62 62
             return [$result, "lastInsertId"=>$lastInsertId];
63
-        }
64
-        catch (\PDOException $e)
63
+        } catch (\PDOException $e)
65 64
         {
66 65
             throw new SQLException(sprintf(
67 66
                 "%s",
Please login to merge, or discard this patch.
src/Core/Connection/Adapters/MySQL.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,8 +66,7 @@
 block discarded – undo
66 66
         try
67 67
         {
68 68
             $this->connectionObject = new \PDO("mysql:host=$host;dbname=$database;", $username, $password);
69
-        }
70
-        catch (\PDOException $e)
69
+        } catch (\PDOException $e)
71 70
         {
72 71
             throw new SQLException("Unable to connect to database", 400, $e);  
73 72
         }
Please login to merge, or discard this patch.