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 ( c609dc...4389c4 )
by Samuel
02:09
created
src/Core/Exception/UnexpectedErrorException.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,10 +20,10 @@
 block discarded – undo
20 20
  */
21 21
 class UnexpectedErrorException extends Exception
22 22
 {
23
-    public function __construct(string $message, int $databaseUser)
24
-    {
25
-        parent::__construct($message, 0, $previous);
23
+	public function __construct(string $message, int $databaseUser)
24
+	{
25
+		parent::__construct($message, 0, $previous);
26 26
 
27
-        $this->log($databaseUser, Constant::ERROR_401, Constant::ERROR_HIGH);
28
-    }
27
+		$this->log($databaseUser, Constant::ERROR_401, Constant::ERROR_HIGH);
28
+	}
29 29
 }
Please login to merge, or discard this 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 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,10 +20,10 @@
 block discarded – undo
20 20
  */
21 21
 class SQLException extends Exception
22 22
 {
23
-    public function __construct(string $message, int $databaseUser)
24
-    {
25
-        parent::__construct($message, 0, null);
23
+	public function __construct(string $message, int $databaseUser)
24
+	{
25
+		parent::__construct($message, 0, null);
26 26
         
27
-        $this->log($databaseUser, Constant::ERROR_401, Constant::ERROR_NORMAL);
28
-    }
27
+		$this->log($databaseUser, Constant::ERROR_401, Constant::ERROR_NORMAL);
28
+	}
29 29
 }
Please login to merge, or discard this 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 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,10 +20,10 @@
 block discarded – undo
20 20
  */
21 21
 class UndefinedValueException extends Exception
22 22
 {
23
-    public function __construct(string $message, int $databaseUser)
24
-    {
25
-        parent::__construct($message, 0, null);
23
+	public function __construct(string $message, int $databaseUser)
24
+	{
25
+		parent::__construct($message, 0, null);
26 26
         
27
-        $this->log($databaseUser, Constant::ERROR_404, Constant::ERROR_NORMAL);
28
-    }
27
+		$this->log($databaseUser, Constant::ERROR_404, Constant::ERROR_NORMAL);
28
+	}
29 29
 }
Please login to merge, or discard this 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/ElasticSearchClientFactory.php 2 patches
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.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,9 +26,9 @@
 block discarded – undo
26 26
 	{
27 27
 		$configJson = file_get_contents(Constant::getGlobals()["config-dir"]["elasticsearch-config"]);
28 28
 
29
-        $config = json_decode($configJson, true);
29
+		$config = json_decode($configJson, true);
30 30
 
31
-        self::$clientObject = \Elasticsearch\ClientBuilder::create()->setHosts($config["hosts"])->build();
31
+		self::$clientObject = \Elasticsearch\ClientBuilder::create()->setHosts($config["hosts"])->build();
32 32
 	}
33 33
 
34 34
 	public static function getClient()
Please login to merge, or discard this patch.
src/Core/Factory/HTTPRequestFactory.php 2 patches
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.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 	{
27 27
 		$configJson = file_get_contents(Constant::getGlobals()["config-dir"]["http-headers-config"]);
28 28
 
29
-        self::$headers = json_decode($configJson, true);
29
+		self::$headers = json_decode($configJson, true);
30 30
 	}
31 31
 
32 32
 	public static function get($url, $extraHeaders = [])
Please login to merge, or discard this patch.
src/Core/CustomFileNameGenerator.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -6,27 +6,27 @@
 block discarded – undo
6 6
 
7 7
 class CustomFileNameGenerator implements \FileUpload\FileNameGenerator\FileNameGenerator
8 8
 {
9
-    protected $generator;
9
+	protected $generator;
10 10
 
11
-    /**
12
-     * @param string|callable|Closure $nameGenerator
13
-     */
14
-    public function __construct($nameGenerator)
15
-    {
16
-        $this->generator = $nameGenerator;
17
-    }
11
+	/**
12
+	 * @param string|callable|Closure $nameGenerator
13
+	 */
14
+	public function __construct($nameGenerator)
15
+	{
16
+		$this->generator = $nameGenerator;
17
+	}
18 18
 
19
-    public function getFileName($source_name, $type, $tmp_name, $index, $content_range, FileUpload $upload)
20
-    {
21
-        $sourceNameArray = explode(".", $source_name);
22
-        $ext = $sourceNameArray[count($sourceNameArray) - 1];
23
-        if (is_string($this->generator) && !is_callable($this->generator)) {
24
-            return $this->generator.".".$ext;
25
-        }
19
+	public function getFileName($source_name, $type, $tmp_name, $index, $content_range, FileUpload $upload)
20
+	{
21
+		$sourceNameArray = explode(".", $source_name);
22
+		$ext = $sourceNameArray[count($sourceNameArray) - 1];
23
+		if (is_string($this->generator) && !is_callable($this->generator)) {
24
+			return $this->generator.".".$ext;
25
+		}
26 26
 
27
-        return call_user_func_array(
28
-            $this->generator,
29
-            func_get_args()
30
-        );
31
-    }
27
+		return call_user_func_array(
28
+			$this->generator,
29
+			func_get_args()
30
+		);
31
+	}
32 32
 }
Please login to merge, or discard this patch.
src/Core/Exception/UnallowedOperationException.php 2 patches
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.
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -20,10 +20,10 @@
 block discarded – undo
20 20
  */
21 21
 class UnallowedOperationException extends Exception
22 22
 {
23
-    public function __construct(string $message, int $databaseUser)
24
-    {
25
-        parent::__construct($message, 0, null);
23
+	public function __construct(string $message, int $databaseUser)
24
+	{
25
+		parent::__construct($message, 0, null);
26 26
         
27
-        $this->log($databaseUser, Constant::ERROR_404, Constant::ERROR_NORMAL);
28
-    }
27
+		$this->log($databaseUser, Constant::ERROR_404, Constant::ERROR_NORMAL);
28
+	}
29 29
 }
Please login to merge, or discard this patch.
src/Core/Factory/DatabaseQueryFactory.php 3 patches
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -27,46 +27,46 @@
 block discarded – undo
27 27
  */
28 28
 class DatabaseQueryFactory
29 29
 {
30
-    public static function insert(string $table, array $data)
31
-    {
32
-        $insertBuilder = (new Builder("QueryBuilder","Insert"))->getBuilder();
33
-        $columns = [];
34
-        $values = [];
30
+	public static function insert(string $table, array $data)
31
+	{
32
+		$insertBuilder = (new Builder("QueryBuilder","Insert"))->getBuilder();
33
+		$columns = [];
34
+		$values = [];
35 35
 
36
-        foreach ($data as $index=>$datum)
37
-        {
38
-            $columns[] = $index;
39
-            $values[] = $datum;
40
-        }
36
+		foreach ($data as $index=>$datum)
37
+		{
38
+			$columns[] = $index;
39
+			$values[] = $datum;
40
+		}
41 41
 
42
-        $columns = "(".implode(", ", $columns).")";
43
-        $values =    "(".implode(", ", $values).")";
44
-        $insertBuilder->into($table.$columns);
42
+		$columns = "(".implode(", ", $columns).")";
43
+		$values =    "(".implode(", ", $values).")";
44
+		$insertBuilder->into($table.$columns);
45 45
 
46
-        $query = (string)$insertBuilder." VALUES ".$values;
47
-        // die($query);
48
-        try
49
-        {
50
-            $parts = explode(".", $table);
51
-            $schemaName = $parts[0];
52
-            $tableName = $parts[1];
46
+		$query = (string)$insertBuilder." VALUES ".$values;
47
+		// die($query);
48
+		try
49
+		{
50
+			$parts = explode(".", $table);
51
+			$schemaName = $parts[0];
52
+			$tableName = $parts[1];
53 53
 
54
-            $connection = DBConnectionFactory::getConnection();
54
+			$connection = DBConnectionFactory::getConnection();
55 55
 
56
-            $result = $connection->prepare((string)$query)->execute();
56
+			$result = $connection->prepare((string)$query)->execute();
57 57
 
58
-            DatabaseLog::log(Session::get('USER_ID'), Constant::EVENT_INSERT, $schemaName, $tableName, $query);
58
+			DatabaseLog::log(Session::get('USER_ID'), Constant::EVENT_INSERT, $schemaName, $tableName, $query);
59 59
 
60
-            $lastInsertId = ($connection->query("SELECT CAST(COALESCE(SCOPE_IDENTITY(), @@IDENTITY) AS int) as id")->fetchColumn());
60
+			$lastInsertId = ($connection->query("SELECT CAST(COALESCE(SCOPE_IDENTITY(), @@IDENTITY) AS int) as id")->fetchColumn());
61 61
 
62
-            return [$result, "lastInsertId"=>$lastInsertId];
63
-        }
64
-        catch (\PDOException $e)
65
-        {
66
-            throw new SQLException(sprintf(
67
-                "%s",
68
-                $e->getMessage()
69
-            ), Constant::UNDEFINED);
70
-        }
71
-    }
62
+			return [$result, "lastInsertId"=>$lastInsertId];
63
+		}
64
+		catch (\PDOException $e)
65
+		{
66
+			throw new SQLException(sprintf(
67
+				"%s",
68
+				$e->getMessage()
69
+			), Constant::UNDEFINED);
70
+		}
71
+	}
72 72
 }
73 73
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 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
 
@@ -40,10 +40,10 @@  discard block
 block discarded – undo
40 40
         }
41 41
 
42 42
         $columns = "(".implode(", ", $columns).")";
43
-        $values =    "(".implode(", ", $values).")";
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
         // die($query);
48 48
         try
49 49
         {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
             $connection = DBConnectionFactory::getConnection();
55 55
 
56
-            $result = $connection->prepare((string)$query)->execute();
56
+            $result = $connection->prepare((string) $query)->execute();
57 57
 
58 58
             DatabaseLog::log(Session::get('USER_ID'), Constant::EVENT_INSERT, $schemaName, $tableName, $query);
59 59
 
Please login to merge, or discard this 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/DirtChecker.php 3 patches
Indentation   +52 added lines, -52 removed lines patch added patch discarded remove patch
@@ -17,65 +17,65 @@
 block discarded – undo
17 17
  */
18 18
 class DirtChecker
19 19
 {
20
-    public $dirtFilterConditions = [">", "<", "="];
20
+	public $dirtFilterConditions = [">", "<", "="];
21 21
 
22
-    public $workingValue;
23
-    public $conditionValue;
24
-    public $workingConditions = [];
22
+	public $workingValue;
23
+	public $conditionValue;
24
+	public $workingConditions = [];
25 25
 
26
-    public function __construct(string $value, string $conditionValue, array $conditions = [])
27
-    {
28
-        $this->workingValue = $value;
29
-        $this->conditionValue = $conditionValue;
26
+	public function __construct(string $value, string $conditionValue, array $conditions = [])
27
+	{
28
+		$this->workingValue = $value;
29
+		$this->conditionValue = $conditionValue;
30 30
 
31
-        if (!empty($conditions)){
32
-            foreach ($conditions as $value) {
33
-                if (!in_array($value, $this->dirtFilterConditions)){
34
-                    throw new \Exception("Invalid Dirt Filter Condition Provided: ".$value);
35
-                }
36
-            }
37
-            $this->workingConditions = $conditions;
38
-        }
39
-        else {
40
-            $this->workingConditions = $this->dirtFilterConditions;
41
-        }
42
-    }
31
+		if (!empty($conditions)){
32
+			foreach ($conditions as $value) {
33
+				if (!in_array($value, $this->dirtFilterConditions)){
34
+					throw new \Exception("Invalid Dirt Filter Condition Provided: ".$value);
35
+				}
36
+			}
37
+			$this->workingConditions = $conditions;
38
+		}
39
+		else {
40
+			$this->workingConditions = $this->dirtFilterConditions;
41
+		}
42
+	}
43 43
 
44
-    public function isDirty() : bool
45
-    {
46
-        $explodedString = explode(" ", $this->workingValue);
47
-        foreach ($explodedString as $string){
48
-            foreach ($this->workingConditions as $condition){
49
-                $switchValue = false;
50
-                switch ($condition) {
51
-                    case '=':
52
-                        $switchValue = strpos($string, $this->conditionValue) !== false;
53
-                        break;
54
-                    case '>':
55
-                        $string = self::turnToNumber($string);
56
-                        $_condition = self::turnToNumber($this->conditionValue);
44
+	public function isDirty() : bool
45
+	{
46
+		$explodedString = explode(" ", $this->workingValue);
47
+		foreach ($explodedString as $string){
48
+			foreach ($this->workingConditions as $condition){
49
+				$switchValue = false;
50
+				switch ($condition) {
51
+					case '=':
52
+						$switchValue = strpos($string, $this->conditionValue) !== false;
53
+						break;
54
+					case '>':
55
+						$string = self::turnToNumber($string);
56
+						$_condition = self::turnToNumber($this->conditionValue);
57 57
 
58
-                        $switchValue = $string > $_condition;
59
-                        break;
60
-                    case '<':
61
-                        $string = self::turnToNumber($string);
62
-                        $_condition = self::turnToNumber($this->conditionValue);
58
+						$switchValue = $string > $_condition;
59
+						break;
60
+					case '<':
61
+						$string = self::turnToNumber($string);
62
+						$_condition = self::turnToNumber($this->conditionValue);
63 63
 
64
-                        $switchValue = $string < $_condition;
65
-                        break;
66
-                }
64
+						$switchValue = $string < $_condition;
65
+						break;
66
+				}
67 67
 
68
-                if (!$switchValue) {
69
-                    return true;
70
-                }
71
-            }
72
-        }
68
+				if (!$switchValue) {
69
+					return true;
70
+				}
71
+			}
72
+		}
73 73
 
74
-        return false;
75
-    }
74
+		return false;
75
+	}
76 76
 
77
-    private function turnToNumber(string $string) : float 
78
-    {
79
-        return (float) filter_var($string, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION | FILTER_FLAG_ALLOW_THOUSAND);
80
-    }
77
+	private function turnToNumber(string $string) : float 
78
+	{
79
+		return (float) filter_var($string, FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION | FILTER_FLAG_ALLOW_THOUSAND);
80
+	}
81 81
 }
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 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]>
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
         $this->workingValue = $value;
29 29
         $this->conditionValue = $conditionValue;
30 30
 
31
-        if (!empty($conditions)){
31
+        if (!empty($conditions)) {
32 32
             foreach ($conditions as $value) {
33
-                if (!in_array($value, $this->dirtFilterConditions)){
33
+                if (!in_array($value, $this->dirtFilterConditions)) {
34 34
                     throw new \Exception("Invalid Dirt Filter Condition Provided: ".$value);
35 35
                 }
36 36
             }
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
     public function isDirty() : bool
45 45
     {
46 46
         $explodedString = explode(" ", $this->workingValue);
47
-        foreach ($explodedString as $string){
48
-            foreach ($this->workingConditions as $condition){
47
+        foreach ($explodedString as $string) {
48
+            foreach ($this->workingConditions as $condition) {
49 49
                 $switchValue = false;
50 50
                 switch ($condition) {
51 51
                     case '=':
Please login to merge, or discard this 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.