@@ -26,7 +26,7 @@ |
||
26 | 26 | // and the '.svn' will match all files and directories named exactly '.svn'. |
27 | 27 | // Note, the '/' characters in a pattern matches both '/' and '\'. |
28 | 28 | // See helpers/FileHelper::findFiles() description for more details on pattern matching rules. |
29 | - 'only' => ['*.php', '*.js'], |
|
29 | + 'only' => ['*.php', '*.js'], |
|
30 | 30 | // array, list of patterns that specify which files (not directories) should be processed. |
31 | 31 | // If empty or not set, all files will be processed. |
32 | 32 | // Please refer to "except" for details about the patterns. |
@@ -218,8 +218,8 @@ |
||
218 | 218 | $query = new Query; |
219 | 219 | |
220 | 220 | $query->select($queryParams['returnField']) |
221 | - ->from($queryParams['tableName']) |
|
222 | - ->where([$queryParams['searchField'] => $searchFieldValue]); |
|
221 | + ->from($queryParams['tableName']) |
|
222 | + ->where([$queryParams['searchField'] => $searchFieldValue]); |
|
223 | 223 | |
224 | 224 | $rows = $query->all(); |
225 | 225 |