@@ -17,7 +17,7 @@ |
||
17 | 17 | { |
18 | 18 | $bindArray = array('param' => 4); |
19 | 19 | |
20 | - Database::bindParamArray('test', array(4,6,8), $bindArray); |
|
20 | + Database::bindParamArray('test', array(4, 6, 8), $bindArray); |
|
21 | 21 | |
22 | 22 | $expected = array( |
23 | 23 | 'param' => 4, |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | { |
23 | 23 | $constituenciesModel = new ConstituenciesModel(new Database()); |
24 | 24 | |
25 | - if($constituenciesModel->getAllConstituencies()) { |
|
25 | + if ($constituenciesModel->getAllConstituencies()) { |
|
26 | 26 | return json_encode($constituenciesModel->constituencies); |
27 | 27 | } else { |
28 | 28 | return ApiResponse::error('NO_CONSTITUENCIES_FOUND'); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | { |
34 | 34 | $candidatesModel = new CandidatesModel(new Database()); |
35 | 35 | |
36 | - if($candidatesModel->getCandidatesByConstituencyId($constituencyId)) { |
|
36 | + if ($candidatesModel->getCandidatesByConstituencyId($constituencyId)) { |
|
37 | 37 | return json_encode($candidatesModel->candidates); |
38 | 38 | } else { |
39 | 39 | return ApiResponse::error('NO_CANDIDATES_FOUND'); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | |
24 | 24 | $userModel = new UserModel(new Database()); |
25 | 25 | |
26 | - if($userModel->loadUserByEmail($userData->email)) { |
|
26 | + if ($userModel->loadUserByEmail($userData->email)) { |
|
27 | 27 | return ApiResponse::error('USER_EXISTS'); |
28 | 28 | } |
29 | 29 | |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | $userModel->saveUser($userData->email, $userData->first_name, $userData->surname, $userData->constituency, $userData->voting, $userData->candidate); |
32 | 32 | |
33 | 33 | return ApiResponse::success('DEFAULT_RESPONSE_SUCCESS'); |
34 | - } catch(\Exception $e) { |
|
34 | + } catch (\Exception $e) { |
|
35 | 35 | return ApiResponse::error('USER_SAVE_FAIL'); |
36 | 36 | } |
37 | 37 | } |
@@ -21,7 +21,7 @@ |
||
21 | 21 | { |
22 | 22 | $resultsModel = new ResultsModel(new Database()); |
23 | 23 | |
24 | - if($resultsModel->getResults()) { |
|
24 | + if ($resultsModel->getResults()) { |
|
25 | 25 | return json_encode($resultsModel->results); |
26 | 26 | } else { |
27 | 27 | return json_encode(array()); |
@@ -10,14 +10,14 @@ |
||
10 | 10 | { |
11 | 11 | public function hydrateObjects($collectionPropertyName, $modelType, $records) |
12 | 12 | { |
13 | - if(empty($records)) { |
|
13 | + if (empty($records)) { |
|
14 | 14 | throw new \Exception('No records found'); |
15 | 15 | } else { |
16 | - foreach($records as $item) { |
|
16 | + foreach ($records as $item) { |
|
17 | 17 | // Requires a fully qualified namespace |
18 | 18 | $doc = new $modelType($this->app); |
19 | 19 | |
20 | - foreach($item as $key => $val) { |
|
20 | + foreach ($item as $key => $val) { |
|
21 | 21 | $doc->{$key} = $val; |
22 | 22 | } |
23 | 23 |
@@ -22,7 +22,7 @@ |
||
22 | 22 | |
23 | 23 | $result = $stmt->fetchAll(\PDO::FETCH_ASSOC); |
24 | 24 | |
25 | - if(is_array($result) && !empty($result)) { |
|
25 | + if (is_array($result) && !empty($result)) { |
|
26 | 26 | $this->constituencies = $result; |
27 | 27 | |
28 | 28 | return $this->constituencies; |
@@ -47,7 +47,7 @@ |
||
47 | 47 | |
48 | 48 | private static function setResponseStatusCode($response, $code) |
49 | 49 | { |
50 | - switch($code) { |
|
50 | + switch ($code) { |
|
51 | 51 | case 'SESSION_CHECK': |
52 | 52 | case 'DEFAULT_RESPONSE_SUCCESS': |
53 | 53 | // 200 - Success |
@@ -22,7 +22,7 @@ |
||
22 | 22 | |
23 | 23 | $result = $stmt->fetchAll(\PDO::FETCH_ASSOC); |
24 | 24 | |
25 | - if(is_array($result) && !empty($result)) { |
|
25 | + if (is_array($result) && !empty($result)) { |
|
26 | 26 | $this->constituencies = $result; |
27 | 27 | |
28 | 28 | return $this->constituencies; |
@@ -22,7 +22,7 @@ |
||
22 | 22 | |
23 | 23 | $result = $stmt->fetchAll(\PDO::FETCH_ASSOC); |
24 | 24 | |
25 | - if(is_array($result) && !empty($result)) { |
|
25 | + if (is_array($result) && !empty($result)) { |
|
26 | 26 | $this->constituencies = $result; |
27 | 27 | |
28 | 28 | return $this->constituencies; |