@@ -88,7 +88,7 @@ |
||
88 | 88 | foreach ( $brutArray as $value ) { |
89 | 89 | $value = trim( $value ); |
90 | 90 | if ( '' !== $value ) |
91 | - $newArray[] = $value; |
|
91 | + $newArray[ ] = $value; |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | return $newArray; |
@@ -87,8 +87,9 @@ discard block |
||
87 | 87 | $newArray = array(); |
88 | 88 | foreach ( $brutArray as $value ) { |
89 | 89 | $value = trim( $value ); |
90 | - if ( '' !== $value ) |
|
91 | - $newArray[] = $value; |
|
90 | + if ( '' !== $value ) { |
|
91 | + $newArray[] = $value; |
|
92 | + } |
|
92 | 93 | } |
93 | 94 | |
94 | 95 | return $newArray; |
@@ -138,8 +139,9 @@ discard block |
||
138 | 139 | $characters = 'abcdefghijklmnopqrstuvwxyz'; |
139 | 140 | $charactersLength = strlen( $characters ); |
140 | 141 | $randomString = ''; |
141 | - for ( $i = 0; $i < $length; $i++ ) |
|
142 | - $randomString .= $characters[ rand( 0, $charactersLength - 1 ) ]; |
|
142 | + for ( $i = 0; $i < $length; $i++ ) { |
|
143 | + $randomString .= $characters[ rand( 0, $charactersLength - 1 ) ]; |
|
144 | + } |
|
143 | 145 | |
144 | 146 | return str_shuffle( $randomString ); |
145 | 147 | } |
@@ -147,8 +149,9 @@ discard block |
||
147 | 149 | public static function limitString( $rowCount, $offset = null ) |
148 | 150 | { |
149 | 151 | $rowCount = intval( $rowCount ); |
150 | - if ( is_null( $offset ) ) |
|
151 | - return $rowCount; |
|
152 | + if ( is_null( $offset ) ) { |
|
153 | + return $rowCount; |
|
154 | + } |
|
152 | 155 | $offset = intval( $offset ); |
153 | 156 | |
154 | 157 | return "$offset, $rowCount"; |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | * @param string $glue |
279 | 279 | * @return $this |
280 | 280 | */ |
281 | - public function whereExpression( $whereString, array $bindParams = [], $glue = 'AND' ) |
|
281 | + public function whereExpression( $whereString, array $bindParams = [ ], $glue = 'AND' ) |
|
282 | 282 | { |
283 | 283 | $whereString = $this->queryStructure->bindParamsExpression( $whereString, $bindParams ); |
284 | 284 | |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | * @param array $bindParams |
291 | 291 | * @return $this |
292 | 292 | */ |
293 | - public function orWhereExpression( $whereString, array $bindParams = [] ) |
|
293 | + public function orWhereExpression( $whereString, array $bindParams = [ ] ) |
|
294 | 294 | { |
295 | 295 | $whereString = $this->queryStructure->bindParamsExpression( $whereString, $bindParams ); |
296 | 296 |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * @return $this |
25 | 25 | * @throws QueryException |
26 | 26 | */ |
27 | - public function orderBy( $column, array $allowedColumns = [] ) |
|
27 | + public function orderBy( $column, array $allowedColumns = [ ] ) |
|
28 | 28 | { |
29 | 29 | $column = trim( $column ); |
30 | 30 | |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * @return $this |
44 | 44 | * @throws QueryException |
45 | 45 | */ |
46 | - public function orderByDesc( $column, array $allowedColumns = [] ) |
|
46 | + public function orderByDesc( $column, array $allowedColumns = [ ] ) |
|
47 | 47 | { |
48 | 48 | $column = trim( $column ); |
49 | 49 |
@@ -28,8 +28,9 @@ discard block |
||
28 | 28 | { |
29 | 29 | $column = trim( $column ); |
30 | 30 | |
31 | - if ( !$this->validateColumn( $column, $allowedColumns ) ) |
|
32 | - throw new QueryException( 'Invalid column name in ORDER BY clause', QueryException::QUERY_ERROR_INVALID_COLUMN_NAME ); |
|
31 | + if ( !$this->validateColumn( $column, $allowedColumns ) ) { |
|
32 | + throw new QueryException( 'Invalid column name in ORDER BY clause', QueryException::QUERY_ERROR_INVALID_COLUMN_NAME ); |
|
33 | + } |
|
33 | 34 | |
34 | 35 | $this->queryStructure->setElement( QueryStructure::ORDER_BY, $column ); |
35 | 36 | |
@@ -47,8 +48,9 @@ discard block |
||
47 | 48 | { |
48 | 49 | $column = trim( $column ); |
49 | 50 | |
50 | - if ( !$this->validateColumn( $column, $allowedColumns ) ) |
|
51 | - throw new QueryException( 'Invalid column name in ORDER BY clause', QueryException::QUERY_ERROR_INVALID_COLUMN_NAME ); |
|
51 | + if ( !$this->validateColumn( $column, $allowedColumns ) ) { |
|
52 | + throw new QueryException( 'Invalid column name in ORDER BY clause', QueryException::QUERY_ERROR_INVALID_COLUMN_NAME ); |
|
53 | + } |
|
52 | 54 | |
53 | 55 | $this->queryStructure->setElement( QueryStructure::ORDER_BY, $column . ' DESC' ); |
54 | 56 | |
@@ -73,8 +75,9 @@ discard block |
||
73 | 75 | */ |
74 | 76 | private function getOrderBySyntax() |
75 | 77 | { |
76 | - if ( count( $this->queryStructure->getElement( QueryStructure::ORDER_BY ) ) ) |
|
77 | - return 'ORDER BY ' . QueryHelper::implode( $this->queryStructure->getElement( QueryStructure::ORDER_BY ), ', ' ); |
|
78 | + if ( count( $this->queryStructure->getElement( QueryStructure::ORDER_BY ) ) ) { |
|
79 | + return 'ORDER BY ' . QueryHelper::implode( $this->queryStructure->getElement( QueryStructure::ORDER_BY ), ', ' ); |
|
80 | + } |
|
78 | 81 | |
79 | 82 | return ''; |
80 | 83 | } |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | * @param string $glue |
279 | 279 | * @return $this |
280 | 280 | */ |
281 | - public function havingExpression( $whereString, array $bindParams = [], $glue = 'AND' ) |
|
281 | + public function havingExpression( $whereString, array $bindParams = [ ], $glue = 'AND' ) |
|
282 | 282 | { |
283 | 283 | $whereString = $this->queryStructure->bindParamsExpression( $whereString, $bindParams ); |
284 | 284 | |
@@ -290,7 +290,7 @@ discard block |
||
290 | 290 | * @param array $bindParams |
291 | 291 | * @return $this |
292 | 292 | */ |
293 | - public function orHavingExpression( $whereString, array $bindParams = [] ) |
|
293 | + public function orHavingExpression( $whereString, array $bindParams = [ ] ) |
|
294 | 294 | { |
295 | 295 | $whereString = $this->queryStructure->bindParamsExpression( $whereString, $bindParams ); |
296 | 296 |
@@ -28,8 +28,9 @@ |
||
28 | 28 | |
29 | 29 | protected function getExplainSyntax() |
30 | 30 | { |
31 | - if ( $this->queryStructure->getElement( QueryStructure::EXPLAIN ) ) |
|
32 | - return 'EXPLAIN'; |
|
31 | + if ( $this->queryStructure->getElement( QueryStructure::EXPLAIN ) ) { |
|
32 | + return 'EXPLAIN'; |
|
33 | + } |
|
33 | 34 | |
34 | 35 | return ''; |
35 | 36 | } |
@@ -117,8 +117,9 @@ discard block |
||
117 | 117 | { |
118 | 118 | $this->queryInit( $query, $params ); |
119 | 119 | |
120 | - if ( $this->lastStatement === self::QUERY_TYPE_EXPLAIN ) |
|
121 | - return $this->sQuery->fetchAll( \PDO::FETCH_ASSOC ); |
|
120 | + if ( $this->lastStatement === self::QUERY_TYPE_EXPLAIN ) { |
|
121 | + return $this->sQuery->fetchAll( \PDO::FETCH_ASSOC ); |
|
122 | + } |
|
122 | 123 | |
123 | 124 | $Columns = $this->sQuery->fetchAll( \PDO::FETCH_NUM ); |
124 | 125 | |
@@ -141,8 +142,9 @@ discard block |
||
141 | 142 | { |
142 | 143 | $this->queryInit( $query, $params ); |
143 | 144 | |
144 | - if ( $this->lastStatement === self::QUERY_TYPE_EXPLAIN ) |
|
145 | - return $this->sQuery->fetchAll( \PDO::FETCH_ASSOC ); |
|
145 | + if ( $this->lastStatement === self::QUERY_TYPE_EXPLAIN ) { |
|
146 | + return $this->sQuery->fetchAll( \PDO::FETCH_ASSOC ); |
|
147 | + } |
|
146 | 148 | |
147 | 149 | $result = $this->sQuery->fetch( $fetchmode ); |
148 | 150 | $this->sQuery->closeCursor(); // Frees up the connection to the server so that other SQL statements may be issued, |
@@ -159,8 +161,9 @@ discard block |
||
159 | 161 | { |
160 | 162 | $this->queryInit( $query, $params ); |
161 | 163 | |
162 | - if ( $this->lastStatement === self::QUERY_TYPE_EXPLAIN ) |
|
163 | - return $this->sQuery->fetchAll( \PDO::FETCH_ASSOC ); |
|
164 | + if ( $this->lastStatement === self::QUERY_TYPE_EXPLAIN ) { |
|
165 | + return $this->sQuery->fetchAll( \PDO::FETCH_ASSOC ); |
|
166 | + } |
|
164 | 167 | |
165 | 168 | $result = $this->sQuery->fetchColumn(); |
166 | 169 | $this->sQuery->closeCursor(); // Frees up the connection to the server so that other SQL statements may be issued |
@@ -242,11 +245,12 @@ discard block |
||
242 | 245 | |
243 | 246 | private function prepareParams( array $parameters ) |
244 | 247 | { |
245 | - if ( self::isArrayAssoc( $parameters ) ) |
|
246 | - $this->bindMore( $parameters ); |
|
247 | - else |
|
248 | - foreach ( $parameters as $key => $val ) |
|
248 | + if ( self::isArrayAssoc( $parameters ) ) { |
|
249 | + $this->bindMore( $parameters ); |
|
250 | + } else { |
|
251 | + foreach ( $parameters as $key => $val ) |
|
249 | 252 | $this->parameters[] = array( $key + 1, $val ); |
253 | + } |
|
250 | 254 | } |
251 | 255 | |
252 | 256 | private function pdoBindValues() |
@@ -254,14 +258,11 @@ discard block |
||
254 | 258 | foreach ( $this->parameters as $param => $value ) { |
255 | 259 | if ( is_int( $value[ 1 ] ) ) { |
256 | 260 | $type = \PDO::PARAM_INT; |
257 | - } |
|
258 | - elseif ( is_bool( $value[ 1 ] ) ) { |
|
261 | + } elseif ( is_bool( $value[ 1 ] ) ) { |
|
259 | 262 | $type = \PDO::PARAM_BOOL; |
260 | - } |
|
261 | - elseif ( is_null( $value[ 1 ] ) ) { |
|
263 | + } elseif ( is_null( $value[ 1 ] ) ) { |
|
262 | 264 | $type = \PDO::PARAM_NULL; |
263 | - } |
|
264 | - else { |
|
265 | + } else { |
|
265 | 266 | $type = \PDO::PARAM_STR; |
266 | 267 | } |
267 | 268 | $this->sQuery->bindValue( $value[ 0 ], $value[ 1 ], $type ); |
@@ -305,10 +306,11 @@ discard block |
||
305 | 306 | { |
306 | 307 | $queryString = trim( $queryString ); |
307 | 308 | |
308 | - if ( preg_match( '/^(select|insert|update|delete|replace|show|desc|explain)[\s]+/i', $queryString, $matches ) ) |
|
309 | - return strtoupper( $matches[ 1 ] ); |
|
310 | - else |
|
311 | - return self::QUERY_TYPE_OTHER; |
|
309 | + if ( preg_match( '/^(select|insert|update|delete|replace|show|desc|explain)[\s]+/i', $queryString, $matches ) ) { |
|
310 | + return strtoupper( $matches[ 1 ] ); |
|
311 | + } else { |
|
312 | + return self::QUERY_TYPE_OTHER; |
|
313 | + } |
|
312 | 314 | } |
313 | 315 | |
314 | 316 | /** |
@@ -317,8 +319,9 @@ discard block |
||
317 | 319 | */ |
318 | 320 | public static function isArrayAssoc( array $arr ) |
319 | 321 | { |
320 | - if ( array() === $arr ) |
|
321 | - return false; |
|
322 | + if ( array() === $arr ) { |
|
323 | + return false; |
|
324 | + } |
|
322 | 325 | |
323 | 326 | return array_keys( $arr ) !== range( 0, count( $arr ) - 1 ); |
324 | 327 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | /** |
47 | 47 | * @var array |
48 | 48 | */ |
49 | - private $parameters = []; |
|
49 | + private $parameters = [ ]; |
|
50 | 50 | |
51 | 51 | /** |
52 | 52 | * @var string; |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | $column = null; |
126 | 126 | |
127 | 127 | foreach ( $Columns as $cells ) { |
128 | - $column[] = $cells[ 0 ]; |
|
128 | + $column[ ] = $cells[ 0 ]; |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | return $column; |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | * @param array $parameters |
210 | 210 | * @throws DbException |
211 | 211 | */ |
212 | - private function queryInit( $query, $parameters = [] ) |
|
212 | + private function queryInit( $query, $parameters = [ ] ) |
|
213 | 213 | { |
214 | 214 | $this->lastStatement = self::getQueryStatement( $query ); |
215 | 215 | $this->createPdoConnection(); |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | * Prepare query |
221 | 221 | */ |
222 | 222 | $this->sQuery = $this->pdo->prepare( $query ); |
223 | - $this->prepareParams($parameters); |
|
223 | + $this->prepareParams( $parameters ); |
|
224 | 224 | $this->pdoBindValues(); |
225 | 225 | $this->sQuery->execute(); |
226 | 226 | if ( DbConfig::getInstance()->isEnableLogQueryDuration() ) { |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | $this->bindMore( $parameters ); |
247 | 247 | else |
248 | 248 | foreach ( $parameters as $key => $val ) |
249 | - $this->parameters[] = array( $key + 1, $val ); |
|
249 | + $this->parameters[ ] = array( $key + 1, $val ); |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | private function pdoBindValues() |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | */ |
289 | 289 | public function bind( $para, $value ) |
290 | 290 | { |
291 | - $this->parameters[] = [ ":" . $para, $value ]; |
|
291 | + $this->parameters[ ] = [ ":" . $para, $value ]; |
|
292 | 292 | } |
293 | 293 | |
294 | 294 | public function CloseConnection() |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | default: |
78 | 78 | $valuePdoString = $this->queryStructure->bindParam( $this->temporaryParam[ 0 ], $this->temporaryParam[ 1 ] ); |
79 | 79 | $body = $this->temporaryParam[ 0 ] . ' ' . $operator . ' ' . $valuePdoString; |
80 | - $this->registerCondition($body); |
|
80 | + $this->registerCondition( $body ); |
|
81 | 81 | break; |
82 | 82 | } |
83 | 83 | } |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | $this->queryStructure->bindParam( 'max', $max ) |
99 | 99 | ]; |
100 | 100 | $body = implode( ' ', $body ); |
101 | - $this->registerCondition($body); |
|
101 | + $this->registerCondition( $body ); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | private function makeInCondition() |
@@ -111,10 +111,10 @@ discard block |
||
111 | 111 | |
112 | 112 | private function inQuerySelect() |
113 | 113 | { |
114 | - $field = $this->temporaryParam[0]; |
|
114 | + $field = $this->temporaryParam[ 0 ]; |
|
115 | 115 | /** @var QuerySelect $subquerySelect */ |
116 | - $subquerySelect = $this->temporaryParam[1]; |
|
117 | - $operator = $this->temporaryParam[2]; |
|
116 | + $subquerySelect = $this->temporaryParam[ 1 ]; |
|
117 | + $operator = $this->temporaryParam[ 2 ]; |
|
118 | 118 | $subquerySelectParams = $subquerySelect->getBindParams(); |
119 | 119 | foreach ( $subquerySelectParams as $key => $value ) { |
120 | 120 | $this->queryStructure->setParams( $key, $value ); |
@@ -127,19 +127,19 @@ discard block |
||
127 | 127 | ' )' |
128 | 128 | ]; |
129 | 129 | $body = implode( ' ', $body ); |
130 | - $this->registerCondition($body); |
|
130 | + $this->registerCondition( $body ); |
|
131 | 131 | |
132 | 132 | } |
133 | 133 | |
134 | 134 | private function inArray() |
135 | 135 | { |
136 | - $field = $this->temporaryParam[0]; |
|
137 | - $value = $this->temporaryParam[1]; |
|
138 | - $operator = $this->temporaryParam[2]; |
|
136 | + $field = $this->temporaryParam[ 0 ]; |
|
137 | + $value = $this->temporaryParam[ 1 ]; |
|
138 | + $operator = $this->temporaryParam[ 2 ]; |
|
139 | 139 | |
140 | 140 | $pdoArray = array(); |
141 | 141 | foreach ( $value as $item ) { |
142 | - $pdoArray[] = $this->queryStructure->bindParam( 'a', $item ); |
|
142 | + $pdoArray[ ] = $this->queryStructure->bindParam( 'a', $item ); |
|
143 | 143 | } |
144 | 144 | $body = [ |
145 | 145 | $field, |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | ]; |
149 | 149 | $body = implode( ' ', $body ); |
150 | 150 | $body = QueryHelper::clearMultipleSpaces( $body ); |
151 | - $this->registerCondition($body); |
|
151 | + $this->registerCondition( $body ); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | /** |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | throw new QueryException( 'Invalid where array!', QueryException::QUERY_ERROR_WHERE_INVALID_PARAM_ARRAY ); |
217 | 217 | |
218 | 218 | if ( count( $param ) == 2 ) |
219 | - $param[] = '='; |
|
219 | + $param[ ] = '='; |
|
220 | 220 | |
221 | 221 | $param[ 2 ] = trim( strtoupper( $param[ 2 ] ) ); |
222 | 222 | $param[ 2 ] = QueryHelper::clearMultipleSpaces( $param[ 2 ] ); |
@@ -103,10 +103,11 @@ discard block |
||
103 | 103 | |
104 | 104 | private function makeInCondition() |
105 | 105 | { |
106 | - if ( is_a( $this->temporaryParam[ 1 ], QuerySelect::class ) ) |
|
107 | - $this->inQuerySelect(); |
|
108 | - elseif ( is_array( $this->temporaryParam[ 1 ] ) ) |
|
109 | - $this->inArray(); |
|
106 | + if ( is_a( $this->temporaryParam[ 1 ], QuerySelect::class ) ) { |
|
107 | + $this->inQuerySelect(); |
|
108 | + } elseif ( is_array( $this->temporaryParam[ 1 ] ) ) { |
|
109 | + $this->inArray(); |
|
110 | + } |
|
110 | 111 | } |
111 | 112 | |
112 | 113 | private function inQuerySelect() |
@@ -182,8 +183,9 @@ discard block |
||
182 | 183 | */ |
183 | 184 | private function getWhereAndHavingSyntax( $clauseType ) |
184 | 185 | { |
185 | - if ( count( $this->queryStructure->getElement( $clauseType ) ) == 0 ) |
|
186 | - return ''; |
|
186 | + if ( count( $this->queryStructure->getElement( $clauseType ) ) == 0 ) { |
|
187 | + return ''; |
|
188 | + } |
|
187 | 189 | |
188 | 190 | $where = ''; |
189 | 191 | $last_type = 'where_start'; |
@@ -212,11 +214,13 @@ discard block |
||
212 | 214 | */ |
213 | 215 | private function validateWhereParam( $param ) |
214 | 216 | { |
215 | - if ( count( $param ) < 2 ) |
|
216 | - throw new QueryException( 'Invalid where array!', QueryException::QUERY_ERROR_WHERE_INVALID_PARAM_ARRAY ); |
|
217 | + if ( count( $param ) < 2 ) { |
|
218 | + throw new QueryException( 'Invalid where array!', QueryException::QUERY_ERROR_WHERE_INVALID_PARAM_ARRAY ); |
|
219 | + } |
|
217 | 220 | |
218 | - if ( count( $param ) == 2 ) |
|
219 | - $param[] = '='; |
|
221 | + if ( count( $param ) == 2 ) { |
|
222 | + $param[] = '='; |
|
223 | + } |
|
220 | 224 | |
221 | 225 | $param[ 2 ] = trim( strtoupper( $param[ 2 ] ) ); |
222 | 226 | $param[ 2 ] = QueryHelper::clearMultipleSpaces( $param[ 2 ] ); |
@@ -8,7 +8,7 @@ |
||
8 | 8 | |
9 | 9 | use Qpdb\QueryBuilder\QueryBuild; |
10 | 10 | |
11 | -include_once $_SERVER['DOCUMENT_ROOT'] . '/vendor/autoload.php'; |
|
11 | +include_once $_SERVER[ 'DOCUMENT_ROOT' ] . '/vendor/autoload.php'; |
|
12 | 12 | |
13 | 13 | |
14 | 14 | $query = QueryBuild::select( 'employees' ) |