Completed
Push — master ( 47d74e...c96bfe )
by Tom
02:53
created
application/tests/Kineo/Component/DatabaseTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
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,
Please login to merge, or discard this patch.
application/src/Kineo/Controller/DataController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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');	
Please login to merge, or discard this patch.
application/src/Kineo/Controller/VoteController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 	}
Please login to merge, or discard this patch.
application/src/Kineo/Controller/ResultsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
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());
Please login to merge, or discard this patch.
application/src/Kineo/Model/BaseModel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,14 +10,14 @@
 block discarded – undo
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
 				
Please login to merge, or discard this patch.
application/src/Kineo/Model/ConstituenciesModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
application/src/Kineo/Component/ApiResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
application/src/Kineo/Model/ResultsModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
application/src/Kineo/Model/CandidatesModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.