@@ -2,6 +2,6 @@ |
||
2 | 2 | use \Divergence\App as App; |
3 | 3 | |
4 | 4 | return [ |
5 | - 'debug' => file_exists(App::$ApplicationPath . '/.debug'), |
|
6 | - 'environment' => (file_exists(App::$ApplicationPath . '/.dev') ? 'dev' : 'production'), |
|
5 | + 'debug' => file_exists(App::$ApplicationPath.'/.debug'), |
|
6 | + 'environment' => (file_exists(App::$ApplicationPath.'/.dev') ? 'dev' : 'production'), |
|
7 | 7 | ]; |
@@ -98,7 +98,7 @@ |
||
98 | 98 | |
99 | 99 | // check validator |
100 | 100 | if (!is_callable($validator)) { |
101 | - throw new Exception('Validator for field ' . $options['id'] . ' is not callable'); |
|
101 | + throw new Exception('Validator for field '.$options['id'].' is not callable'); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | |
69 | 69 | if ($options['type'] == 'one-one') { |
70 | 70 | if (empty($options['local'])) { |
71 | - $options['local'] = $relationship . 'ID'; |
|
71 | + $options['local'] = $relationship.'ID'; |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | if (empty($options['foreign'])) { |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | } |
81 | 81 | |
82 | 82 | if (empty($options['foreign'])) { |
83 | - $options['foreign'] = $classShortName. 'ID'; |
|
83 | + $options['foreign'] = $classShortName.'ID'; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | if (!isset($options['indexField'])) { |
@@ -142,12 +142,12 @@ discard block |
||
142 | 142 | } |
143 | 143 | |
144 | 144 | if (empty($options['linkLocal'])) { |
145 | - $options['linkLocal'] = $classShortName . 'ID'; |
|
145 | + $options['linkLocal'] = $classShortName.'ID'; |
|
146 | 146 | } |
147 | 147 | |
148 | 148 | if (empty($options['linkForeign'])) { |
149 | 149 | $foreignShortname = basename(str_replace('\\', '/', $options['class']::$rootClass)); |
150 | - $options['linkForeign'] = $foreignShortname . 'ID'; |
|
150 | + $options['linkForeign'] = $foreignShortname.'ID'; |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | if (empty($options['local'])) { |
@@ -66,7 +66,7 @@ |
||
66 | 66 | ]; |
67 | 67 | |
68 | 68 | if ($options['order']) { |
69 | - $query .= ' ORDER BY ' . join(',', static::_mapFieldOrder($options['order'])); |
|
69 | + $query .= ' ORDER BY '.join(',', static::_mapFieldOrder($options['order'])); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | if ($options['limit']) { |
@@ -31,8 +31,7 @@ |
||
31 | 31 | } |
32 | 32 | |
33 | 33 | switch ($responseMode ? $responseMode : static::$responseMode) { |
34 | - case 'json': |
|
35 | - JSON::translateAndRespond($responseData); |
|
34 | + case 'json' : JSON::translateAndRespond($responseData); |
|
36 | 35 | break; |
37 | 36 | case 'jsonp': |
38 | 37 | JSONP::translateAndRespond($responseData); |
@@ -11,7 +11,7 @@ |
||
11 | 11 | throw new \Exception(json_last_error_msg()); |
12 | 12 | } |
13 | 13 | header('Content-type: application/javascript; charset=utf-8', true); |
14 | - echo 'var data = ' . $JSON; |
|
14 | + echo 'var data = '.$JSON; |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | public static function translateAndRespond($data) |
@@ -20,9 +20,9 @@ |
||
20 | 20 | |
21 | 21 | public static function config($Label) |
22 | 22 | { |
23 | - $Config = static::$ApplicationPath . '/config/' . $Label . '.php'; |
|
23 | + $Config = static::$ApplicationPath.'/config/'.$Label.'.php'; |
|
24 | 24 | if (!file_exists($Config)) { |
25 | - throw new \Exception($Config . ' not found in '.static::class.'::config()'); |
|
25 | + throw new \Exception($Config.' not found in '.static::class.'::config()'); |
|
26 | 26 | } |
27 | 27 | return require $Config; |
28 | 28 | } |
@@ -84,8 +84,8 @@ |
||
84 | 84 | |
85 | 85 | |
86 | 86 | /** |
87 | - * @var array $validators Validation checks |
|
88 | - */ |
|
87 | + * @var array $validators Validation checks |
|
88 | + */ |
|
89 | 89 | public static $validators = []; |
90 | 90 | |
91 | 91 | /** |
@@ -722,7 +722,7 @@ discard block |
||
722 | 722 | static::$tableName, |
723 | 723 | join(',', $set), |
724 | 724 | ], |
725 | - [static::class,'handleError'] |
|
725 | + [static::class, 'handleError'] |
|
726 | 726 | ); |
727 | 727 | |
728 | 728 | $this->_record[static::$primaryKey ? static::$primaryKey : 'ID'] = DB::insertID(); |
@@ -737,7 +737,7 @@ discard block |
||
737 | 737 | static::_cn(static::$primaryKey ? static::$primaryKey : 'ID'), |
738 | 738 | $this->getPrimaryKeyValue(), |
739 | 739 | ], |
740 | - [static::class,'handleError'] |
|
740 | + [static::class, 'handleError'] |
|
741 | 741 | ); |
742 | 742 | |
743 | 743 | $this->_isUpdated = true; |
@@ -797,7 +797,7 @@ discard block |
||
797 | 797 | static::$tableName, |
798 | 798 | static::_cn(static::$primaryKey ? static::$primaryKey : 'ID'), |
799 | 799 | $id, |
800 | - ], [static::class,'handleError']); |
|
800 | + ], [static::class, 'handleError']); |
|
801 | 801 | |
802 | 802 | return DB::affectedRows() > 0; |
803 | 803 | } |
@@ -885,9 +885,9 @@ discard block |
||
885 | 885 | |
886 | 886 | if ($cacheIndex) { |
887 | 887 | $key = sprintf('%s/%s:%s', static::$tableName, $field, $value); |
888 | - return DB::oneRecordCached($key, $query, $params, [static::class,'handleError']); |
|
888 | + return DB::oneRecordCached($key, $query, $params, [static::class, 'handleError']); |
|
889 | 889 | } else { |
890 | - return DB::oneRecord($query, $params, [static::class,'handleError']); |
|
890 | + return DB::oneRecord($query, $params, [static::class, 'handleError']); |
|
891 | 891 | } |
892 | 892 | } |
893 | 893 | |
@@ -935,7 +935,7 @@ discard block |
||
935 | 935 | $order ? 'ORDER BY '.join(',', $order) : '', |
936 | 936 | ], |
937 | 937 | |
938 | - [static::class,'handleError'] |
|
938 | + [static::class, 'handleError'] |
|
939 | 939 | ); |
940 | 940 | } |
941 | 941 | |
@@ -948,7 +948,7 @@ discard block |
||
948 | 948 | */ |
949 | 949 | public static function getByQuery($query, $params = []) |
950 | 950 | { |
951 | - return static::instantiateRecord(DB::oneRecord($query, $params, [static::class,'handleError'])); |
|
951 | + return static::instantiateRecord(DB::oneRecord($query, $params, [static::class, 'handleError'])); |
|
952 | 952 | } |
953 | 953 | |
954 | 954 | /** |
@@ -1031,7 +1031,7 @@ discard block |
||
1031 | 1031 | return ', '.$value.' AS '.$key; |
1032 | 1032 | } |
1033 | 1033 | } else { |
1034 | - return ', ' . $columns; |
|
1034 | + return ', '.$columns; |
|
1035 | 1035 | } |
1036 | 1036 | } |
1037 | 1037 | } |
@@ -1045,7 +1045,7 @@ discard block |
||
1045 | 1045 | public static function buildHaving($having) |
1046 | 1046 | { |
1047 | 1047 | if (!empty($having)) { |
1048 | - return ' HAVING (' . (is_array($having) ? join(') AND (', static::_mapConditions($having)) : $having) . ')'; |
|
1048 | + return ' HAVING ('.(is_array($having) ? join(') AND (', static::_mapConditions($having)) : $having).')'; |
|
1049 | 1049 | } |
1050 | 1050 | } |
1051 | 1051 | |
@@ -1095,7 +1095,7 @@ discard block |
||
1095 | 1095 | ]; |
1096 | 1096 | |
1097 | 1097 | if ($options['order']) { |
1098 | - $query .= ' ORDER BY ' . join(',', static::_mapFieldOrder($options['order'])); |
|
1098 | + $query .= ' ORDER BY '.join(',', static::_mapFieldOrder($options['order'])); |
|
1099 | 1099 | } |
1100 | 1100 | |
1101 | 1101 | if ($options['limit']) { |
@@ -1103,9 +1103,9 @@ discard block |
||
1103 | 1103 | } |
1104 | 1104 | |
1105 | 1105 | if ($options['indexField']) { |
1106 | - return DB::table(static::_cn($options['indexField']), $query, $params, null, [static::class,'handleError']); |
|
1106 | + return DB::table(static::_cn($options['indexField']), $query, $params, null, [static::class, 'handleError']); |
|
1107 | 1107 | } else { |
1108 | - return DB::allRecords($query, $params, [static::class,'handleError']); |
|
1108 | + return DB::allRecords($query, $params, [static::class, 'handleError']); |
|
1109 | 1109 | } |
1110 | 1110 | } |
1111 | 1111 | |
@@ -1142,7 +1142,7 @@ discard block |
||
1142 | 1142 | ]; |
1143 | 1143 | |
1144 | 1144 | if ($options['order']) { |
1145 | - $query .= ' ORDER BY ' . join(',', static::_mapFieldOrder($options['order'])); |
|
1145 | + $query .= ' ORDER BY '.join(',', static::_mapFieldOrder($options['order'])); |
|
1146 | 1146 | } |
1147 | 1147 | |
1148 | 1148 | if ($options['limit']) { |
@@ -1150,9 +1150,9 @@ discard block |
||
1150 | 1150 | } |
1151 | 1151 | |
1152 | 1152 | if ($options['indexField']) { |
1153 | - return DB::table(static::_cn($options['indexField']), $query, $params, null, [static::class,'handleError']); |
|
1153 | + return DB::table(static::_cn($options['indexField']), $query, $params, null, [static::class, 'handleError']); |
|
1154 | 1154 | } else { |
1155 | - return DB::allRecords($query, $params, [static::class,'handleError']); |
|
1155 | + return DB::allRecords($query, $params, [static::class, 'handleError']); |
|
1156 | 1156 | } |
1157 | 1157 | } |
1158 | 1158 | |
@@ -1165,12 +1165,12 @@ discard block |
||
1165 | 1165 | */ |
1166 | 1166 | public static function getAllByQuery($query, $params = []) |
1167 | 1167 | { |
1168 | - return static::instantiateRecords(DB::allRecords($query, $params, [static::class,'handleError'])); |
|
1168 | + return static::instantiateRecords(DB::allRecords($query, $params, [static::class, 'handleError'])); |
|
1169 | 1169 | } |
1170 | 1170 | |
1171 | 1171 | public static function getTableByQuery($keyField, $query, $params = []) |
1172 | 1172 | { |
1173 | - return static::instantiateRecords(DB::table($keyField, $query, $params, [static::class,'handleError'])); |
|
1173 | + return static::instantiateRecords(DB::table($keyField, $query, $params, [static::class, 'handleError'])); |
|
1174 | 1174 | } |
1175 | 1175 | |
1176 | 1176 | |
@@ -1303,7 +1303,7 @@ discard block |
||
1303 | 1303 | { |
1304 | 1304 | static::init(); |
1305 | 1305 | if (!static::fieldExists($field)) { |
1306 | - throw new Exception('getColumnName called on nonexisting column: ' . get_called_class().'->'.$field); |
|
1306 | + throw new Exception('getColumnName called on nonexisting column: '.get_called_class().'->'.$field); |
|
1307 | 1307 | } |
1308 | 1308 | |
1309 | 1309 | return static::$_classFields[get_called_class()][$field]['columnName']; |
@@ -1738,7 +1738,7 @@ discard block |
||
1738 | 1738 | case 'boolean': |
1739 | 1739 | { |
1740 | 1740 | if (!isset($this->_convertedValues[$field])) { |
1741 | - $this->_convertedValues[$field] = (boolean)$value; |
|
1741 | + $this->_convertedValues[$field] = (boolean) $value; |
|
1742 | 1742 | } |
1743 | 1743 | |
1744 | 1744 | return $this->_convertedValues[$field]; |
@@ -1777,7 +1777,7 @@ discard block |
||
1777 | 1777 | |
1778 | 1778 | protected function _setBooleanValue($value) |
1779 | 1779 | { |
1780 | - return (boolean)$value; |
|
1780 | + return (boolean) $value; |
|
1781 | 1781 | } |
1782 | 1782 | |
1783 | 1783 | protected function _setDecimalValue($value) |
@@ -2017,7 +2017,7 @@ discard block |
||
2017 | 2017 | foreach ($order as $key => $value) { |
2018 | 2018 | if (is_string($key)) { |
2019 | 2019 | $columnName = static::_cn($key); |
2020 | - $direction = strtoupper($value)=='DESC' ? 'DESC' : 'ASC'; |
|
2020 | + $direction = strtoupper($value) == 'DESC' ? 'DESC' : 'ASC'; |
|
2021 | 2021 | } else { |
2022 | 2022 | $columnName = static::_cn($value); |
2023 | 2023 | $direction = 'ASC'; |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | if (static::peekPath() == 'json') { |
38 | 38 | // check access for API response modes |
39 | 39 | static::$responseMode = static::shiftPath(); |
40 | - if (in_array(static::$responseMode, ['json','jsonp'])) { |
|
40 | + if (in_array(static::$responseMode, ['json', 'jsonp'])) { |
|
41 | 41 | if (!static::checkAPIAccess()) { |
42 | 42 | return static::throwAPIUnAuthorizedError(); |
43 | 43 | } |
@@ -51,8 +51,7 @@ discard block |
||
51 | 51 | public static function handleRecordsRequest($action = false) |
52 | 52 | { |
53 | 53 | switch ($action ? $action : $action = static::shiftPath()) { |
54 | - case 'save': |
|
55 | - { |
|
54 | + case 'save' : { |
|
56 | 55 | return static::handleMultiSaveRequest(); |
57 | 56 | } |
58 | 57 | |
@@ -190,9 +189,7 @@ discard block |
||
190 | 189 | } |
191 | 190 | |
192 | 191 | switch ($action ? $action : $action = static::shiftPath()) { |
193 | - case '': |
|
194 | - case false: |
|
195 | - { |
|
192 | + case '' : case false : { |
|
196 | 193 | $className = static::$recordClass; |
197 | 194 | |
198 | 195 | return static::respond(static::getTemplateName($className::$singularNoun), [ |
@@ -280,7 +277,7 @@ discard block |
||
280 | 277 | { |
281 | 278 | $className = static::$recordClass; |
282 | 279 | |
283 | - static::prepareResponseModeJSON(['POST','PUT']); |
|
280 | + static::prepareResponseModeJSON(['POST', 'PUT']); |
|
284 | 281 | |
285 | 282 | if ($className::fieldExists(key($_REQUEST['data']))) { |
286 | 283 | $_REQUEST['data'] = [$_REQUEST['data']]; |
@@ -352,7 +349,7 @@ discard block |
||
352 | 349 | { |
353 | 350 | $className = static::$recordClass; |
354 | 351 | |
355 | - static::prepareResponseModeJSON(['POST','PUT','DELETE']); |
|
352 | + static::prepareResponseModeJSON(['POST', 'PUT', 'DELETE']); |
|
356 | 353 | |
357 | 354 | if ($className::fieldExists(key($_REQUEST['data']))) { |
358 | 355 | $_REQUEST['data'] = [$_REQUEST['data']]; |
@@ -414,7 +411,7 @@ discard block |
||
414 | 411 | return static::throwUnauthorizedError(); |
415 | 412 | } |
416 | 413 | |
417 | - if (in_array($_SERVER['REQUEST_METHOD'], ['POST','PUT'])) { |
|
414 | + if (in_array($_SERVER['REQUEST_METHOD'], ['POST', 'PUT'])) { |
|
418 | 415 | if (static::$responseMode == 'json') { |
419 | 416 | $_REQUEST = JSON::getRequestData(); |
420 | 417 | if (is_array($_REQUEST['data'])) { |
@@ -575,7 +572,7 @@ discard block |
||
575 | 572 | |
576 | 573 | public static function getTemplateName($noun) |
577 | 574 | { |
578 | - return preg_replace_callback('/\s+([a-zA-Z])/', function ($matches) { |
|
575 | + return preg_replace_callback('/\s+([a-zA-Z])/', function($matches) { |
|
579 | 576 | return strtoupper($matches[1]); |
580 | 577 | }, $noun); |
581 | 578 | } |