@@ -91,7 +91,7 @@ |
||
91 | 91 | * return the entire session superglobal. mainly for debugging purposes |
92 | 92 | * @return mixed |
93 | 93 | */ |
94 | - public function getAllSessionVars(){ |
|
94 | + public function getAllSessionVars() { |
|
95 | 95 | return $_SESSION; |
96 | 96 | } |
97 | 97 |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | * get the current uri for routing |
35 | 35 | * @return mixed |
36 | 36 | */ |
37 | - public function getUri(){ |
|
37 | + public function getUri() { |
|
38 | 38 | return $_SERVER['REQUEST_URI']; |
39 | 39 | } |
40 | 40 | |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | { |
68 | 68 | $host = $_SERVER['HTTP_HOST']; |
69 | 69 | $https = !empty($_SERVER['HTTPS']) ? 'https' : 'http'; |
70 | - return $https . '://' . $host . '/'; |
|
70 | + return $https.'://'.$host.'/'; |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
@@ -36,7 +36,7 @@ |
||
36 | 36 | } |
37 | 37 | if ($success) { |
38 | 38 | $this->alertBox->setAlert('Configuration updates successfully'); |
39 | - } else { |
|
39 | + }else { |
|
40 | 40 | $this->alertBox->setAlert('error in configuration update', 'error'); |
41 | 41 | } |
42 | 42 | $this->container->getResponse()->redirect('admin/config'); |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * fetches the result from an executed query |
102 | 102 | * @return array |
103 | 103 | */ |
104 | - protected function fetchAll(){ |
|
104 | + protected function fetchAll() { |
|
105 | 105 | return $this->stmt->fetchAll(); |
106 | 106 | } |
107 | 107 | |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | * returns a single line from the executed query |
110 | 110 | * @return mixed |
111 | 111 | */ |
112 | - protected function fetch(){ |
|
112 | + protected function fetch() { |
|
113 | 113 | return $this->stmt->fetch(); |
114 | 114 | } |
115 | 115 | |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | $table = $reflect->getShortName(); //this is to only get the model name, otherwise we get the full namespace |
137 | 137 | //since our models all end with Model, we should remove it. |
138 | 138 | $table = $this->removeFromEnd($table, 'Model'); |
139 | - $table = $table . 's'; //adding the s since the table should be plural. Might be some special case where the plural isn't just with an s |
|
139 | + $table = $table.'s'; //adding the s since the table should be plural. Might be some special case where the plural isn't just with an s |
|
140 | 140 | $table = strtolower($table); //the database names are in lowercase |
141 | 141 | } |
142 | 142 | |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | } |
156 | 156 | |
157 | 157 | //if we are here, then table doesn't exist, check for view |
158 | - $view = 'v_' . $table; |
|
158 | + $view = 'v_'.$table; |
|
159 | 159 | $stmt->bindValue(':table', $view, PDO::PARAM_STR); |
160 | 160 | $stmt->execute(); |
161 | 161 | $exists = $stmt->rowCount() > 0; //will return 1 if table exists or 0 if non existant |
@@ -176,8 +176,8 @@ discard block |
||
176 | 176 | * @param $table string the table name |
177 | 177 | * @return string |
178 | 178 | */ |
179 | - protected function getTablePrefix($table){ |
|
180 | - if(Config::TABLE_PREFIX != '') |
|
179 | + protected function getTablePrefix($table) { |
|
180 | + if (Config::TABLE_PREFIX != '') |
|
181 | 181 | { |
182 | 182 | $table = Config::TABLE_PREFIX.'_'.$table; |
183 | 183 | } |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | protected function getRowById($rowId, $table = null): array |
249 | 249 | { |
250 | 250 | $tableName = $this->getTable($table); |
251 | - $idName = 'id' . $tableName; |
|
251 | + $idName = 'id'.$tableName; |
|
252 | 252 | $sql = "SELECT * FROM $tableName WHERE $idName = :rowId"; |
253 | 253 | $this->query($sql); |
254 | 254 | $this->bind(':rowId', $rowId); |
@@ -24,7 +24,7 @@ |
||
24 | 24 | $categories = $this->getResultSet('categories'); |
25 | 25 | foreach ($categories as $category) { |
26 | 26 | $data += [ |
27 | - $category->category_name => '/category/' . $category->categories_slug |
|
27 | + $category->category_name => '/category/'.$category->categories_slug |
|
28 | 28 | ]; |
29 | 29 | } |
30 | 30 | return $data; |
@@ -32,7 +32,7 @@ |
||
32 | 32 | if (!$configModel->updateConfig($update->dbId, $update->value)) { |
33 | 33 | $result['success'] = false; |
34 | 34 | $result['errorId'][] = $update->id; |
35 | - } else { |
|
35 | + }else { |
|
36 | 36 | $result['successId'][] = $update->id; |
37 | 37 | } |
38 | 38 | } |