Passed
Push — master ( 749535...2255b4 )
by smiley
01:29
created
src/Query/WhereTrait.php 2 patches
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
 				elseif(in_array(strtolower($val2), ['null', 'false', 'true', 'unknown'], true)){
100 100
 					$where[] = strtoupper($val2);
101 101
 				}
102
-				else {
102
+				else{
103 103
 
104 104
 					if($bind){
105 105
 						$where[] = '?';
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 					: $this->dialect->quote($val1)
63 63
 			];
64 64
 
65
-			if(in_array($operator, ['IN', 'NOT IN', 'ANY', 'SOME',], true)){
65
+			if(in_array($operator, ['IN', 'NOT IN', 'ANY', 'SOME', ], true)){
66 66
 
67 67
 				if(is_array($val2)){
68 68
 
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 				elseif(in_array(strtolower($val2), ['null', 'false', 'true', 'unknown'], true)){
101 101
 					$where[] = strtoupper($val2);
102 102
 				}
103
-				else {
103
+				else{
104 104
 
105 105
 					if($bind){
106 106
 						$where[] = '?';
@@ -159,9 +159,9 @@  discard block
 block discarded – undo
159 159
 		$where = [];
160 160
 
161 161
 		foreach($this->where as $k => $v){
162
-			$last = $this->where[$k-1] ?? false;
162
+			$last = $this->where[$k - 1] ?? false;
163 163
 
164
-			if(in_array($v,  $this->joinArgs + ['(', ')'], true)){
164
+			if(in_array($v, $this->joinArgs + ['(', ')'], true)){
165 165
 				$where[] = $v;
166 166
 
167 167
 				continue;
Please login to merge, or discard this patch.
src/Query/QueryBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -550,8 +550,8 @@
 block discarded – undo
550 550
 								: $this->dialect->quote($k).' = '.$v; //$this->db->escape($v)
551 551
 						}
552 552
 						else{
553
-							$this->set[]        = $this->dialect->quote($k).' = ?';
554
-							$this->addBindValue($k, is_bool($v) ? (int)$v : $v);// avoid errors with PDO firebird & mysql
553
+							$this->set[] = $this->dialect->quote($k).' = ?';
554
+							$this->addBindValue($k, is_bool($v) ? (int)$v : $v); // avoid errors with PDO firebird & mysql
555 555
 						}
556 556
 					}
557 557
 				}
Please login to merge, or discard this patch.
src/Drivers/PostgreSQL.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
 	}
75 75
 
76 76
 	/** @inheritdoc */
77
-	public function getServerInfo():?string{
77
+	public function getServerInfo(): ?string{
78 78
 		$ver = pg_version($this->db);
79 79
 
80 80
 		return 'PostgreSQL '.$ver['server'].' ('.$ver['server_encoding'].', date style: '.$ver['DateStyle'].', time zone: '.$ver['TimeZone'].')';
Please login to merge, or discard this patch.
src/Drivers/MSSqlSrv.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
 	}
169 169
 
170 170
 	/** @inheritdoc */
171
-	public function getServerInfo():?string{
171
+	public function getServerInfo(): ?string{
172 172
 
173 173
 		if(gettype($this->db) === 'resource'){
174 174
 			$info = sqlsrv_server_info($this->db);
Please login to merge, or discard this patch.
src/Drivers/MSSqlSrvPDO.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 		// @todo
41 41
 		$this->pdo_options[PDO::SQLSRV_ATTR_QUERY_TIMEOUT] = $options->mssql_timeout; // doesn't seem to have an effect
42 42
 		$this->pdo_options[PDO::SQLSRV_ATTR_FETCHES_NUMERIC_TYPE] = true;
43
-		$this->pdo_options[PDO::SQLSRV_ATTR_ENCODING ] = PDO::SQLSRV_ENCODING_UTF8;
43
+		$this->pdo_options[PDO::SQLSRV_ATTR_ENCODING] = PDO::SQLSRV_ENCODING_UTF8;
44 44
 
45 45
 		parent::__construct($options, $cache);
46 46
 	}
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 		$dsn .= ':Server='.$this->options->host;
53 53
 
54 54
 		if(is_numeric($this->options->port)){
55
-			$dsn .=  ','.$this->options->port;
55
+			$dsn .= ','.$this->options->port;
56 56
 		}
57 57
 
58 58
 		$dsn .= ';Database='.$this->options->database;
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 	}
73 73
 
74 74
 	/** @inheritdoc */
75
-	public function getServerInfo():?string{
75
+	public function getServerInfo(): ?string{
76 76
 		$info = $this->db->getAttribute(PDO::ATTR_SERVER_INFO);
77 77
 
78 78
 		if(is_array($info) && !empty($info)){
Please login to merge, or discard this patch.
src/Drivers/DriverInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
 	 *
70 70
 	 * @return string serverinfo string
71 71
 	 */
72
-	public function getServerInfo():?string;
72
+	public function getServerInfo(): ?string;
73 73
 
74 74
 	/**
75 75
 	 * Sanitizer.
Please login to merge, or discard this patch.
src/Drivers/PDODriverAbstract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
 	}
122 122
 
123 123
 	/** @inheritdoc */
124
-	public function getServerInfo():?string{
124
+	public function getServerInfo(): ?string{
125 125
 		return $this->db->getAttribute(PDO::ATTR_SERVER_INFO);
126 126
 	}
127 127
 
Please login to merge, or discard this patch.
src/Drivers/DriverAbstract.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
 				$sql,
176 176
 				$values !== null ? $values : [],
177 177
 				$index,
178
-				$assoc  !== null ? $assoc  : true
178
+				$assoc !== null ? $assoc : true
179 179
 			);
180 180
 		}
181 181
 		catch(\Exception $e){
Please login to merge, or discard this patch.
src/Drivers/FirebirdPDO.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
 	}
84 84
 
85 85
 	/** @inheritdoc */
86
-	public function getServerInfo():?string{
86
+	public function getServerInfo(): ?string{
87 87
 		return $this->db->getAttribute(PDO::ATTR_SERVER_INFO).', connected to: '.$this->options->database;
88 88
 	}
89 89
 
Please login to merge, or discard this patch.