Passed
Push — master ( 7ff405...d0230e )
by Adrian
01:39
created
src/Traits/WhereAndHavingBuilder.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 	{
119 119
 		$pdoArray = array();
120 120
 		foreach ( $value as $item ) {
121
-			$pdoArray[] = $this->queryStructure->bindParam( 'a', $item );
121
+			$pdoArray[ ] = $this->queryStructure->bindParam( 'a', $item );
122 122
 		}
123 123
 		$body = [
124 124
 			$field,
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 			throw new QueryException( 'Invalid where array!', QueryException::QUERY_ERROR_WHERE_INVALID_PARAM_ARRAY );
190 190
 
191 191
 		if ( count( $param ) == 2 )
192
-			$param[] = '=';
192
+			$param[ ] = '=';
193 193
 
194 194
 		$param[ 2 ] = trim( strtoupper( $param[ 2 ] ) );
195 195
 		$param[ 2 ] = QueryHelper::clearMultipleSpaces( $param[ 2 ] );
Please login to merge, or discard this patch.
Braces   +14 added lines, -10 removed lines patch added patch discarded remove patch
@@ -61,10 +61,11 @@  discard block
 block discarded – undo
61 61
 			case 'IN':
62 62
 			case 'NOT IN':
63 63
 			case '!IN':
64
-				if ( is_a( $value, QuerySelect::class ) )
65
-					return $this->inSelectObject( $field, $value, $operator, $glue, $clauseType );
66
-				elseif ( is_array( $value ) )
67
-					return $this->inArray( $field, $value, $operator, $glue, $clauseType );
64
+				if ( is_a( $value, QuerySelect::class ) ) {
65
+									return $this->inSelectObject( $field, $value, $operator, $glue, $clauseType );
66
+				} elseif ( is_array( $value ) ) {
67
+									return $this->inArray( $field, $value, $operator, $glue, $clauseType );
68
+				}
68 69
 				break;
69 70
 
70 71
 			default:
@@ -155,8 +156,9 @@  discard block
 block discarded – undo
155 156
 	 */
156 157
 	private function getWhereAndHavingSyntax( $clauseType )
157 158
 	{
158
-		if ( count( $this->queryStructure->getElement( $clauseType ) ) == 0 )
159
-			return '';
159
+		if ( count( $this->queryStructure->getElement( $clauseType ) ) == 0 ) {
160
+					return '';
161
+		}
160 162
 
161 163
 		$where = '';
162 164
 		$last_type = 'where_start';
@@ -185,11 +187,13 @@  discard block
 block discarded – undo
185 187
 	 */
186 188
 	private function validateWhereParam( $param )
187 189
 	{
188
-		if ( count( $param ) < 2 )
189
-			throw new QueryException( 'Invalid where array!', QueryException::QUERY_ERROR_WHERE_INVALID_PARAM_ARRAY );
190
+		if ( count( $param ) < 2 ) {
191
+					throw new QueryException( 'Invalid where array!', QueryException::QUERY_ERROR_WHERE_INVALID_PARAM_ARRAY );
192
+		}
190 193
 
191
-		if ( count( $param ) == 2 )
192
-			$param[] = '=';
194
+		if ( count( $param ) == 2 ) {
195
+					$param[] = '=';
196
+		}
193 197
 
194 198
 		$param[ 2 ] = trim( strtoupper( $param[ 2 ] ) );
195 199
 		$param[ 2 ] = QueryHelper::clearMultipleSpaces( $param[ 2 ] );
Please login to merge, or discard this patch.