Completed
Push — master ( d6f879...45c473 )
by Grant
15:35 queued 01:47
created
public_html/tc/services/Locale.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
             $result = ContentController::getContentByLocale($locale);
40 40
             $json = json_encode($result, JSON_PRETTY_PRINT);
41 41
             echo($json);
42
-        }else {
42
+        } else {
43 43
             $result = array();
44 44
             $json = json_encode($result, JSON_PRETTY_PRINT);
45 45
             echo($json);
Please login to merge, or discard this patch.
public_html/tc/services/SkillDeclarationByUser.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
                 
43 43
                 $json = json_encode($result, JSON_PRETTY_PRINT);
44 44
                 echo($json);
45
-            }else {
45
+            } else {
46 46
                 $result = array();
47 47
                 $json = json_encode($result, JSON_PRETTY_PRINT);
48 48
                 echo($json);
Please login to merge, or discard this patch.
public_html/tc/services/JobPoster.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
                 $json = json_encode($result, JSON_PRETTY_PRINT);
38 38
                 header("Content-length:" . strlen($json));
39 39
                 echo($json);
40
-            }else {
40
+            } else {
41 41
                 $result = array();
42 42
                 $json = json_encode($result, JSON_PRETTY_PRINT);
43 43
                 echo($json);
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
                 $result = JobPosterController::createJobPoster($jobPoster);
107 107
                 $json = json_encode($result, JSON_PRETTY_PRINT);
108 108
                 echo($json);
109
-            }else {
109
+            } else {
110 110
                 $result = array();
111 111
                 $json = json_encode($result, JSON_PRETTY_PRINT);
112 112
                 echo($json);
Please login to merge, or discard this patch.
public_html/tc/services/Authentication.php 1 patch
Braces   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -51,23 +51,23 @@  discard block
 block discarded – undo
51 51
 
52 52
                         echo($json);
53 53
 
54
-                    }else {
54
+                    } else {
55 55
                         header('HTTP/1.0 401 Unauthorized');
56 56
                         echo json_encode(array("failed"=>"Invalid token"), JSON_FORCE_OBJECT);
57 57
                         exit;
58 58
                     }
59 59
 
60
-                }else {
60
+                } else {
61 61
                     header('HTTP/1.0 401 Unauthorized');
62 62
                     echo json_encode(array("failed"=>"No user id provided"), JSON_FORCE_OBJECT);
63 63
                     exit;
64 64
                 }
65
-            }else {
65
+            } else {
66 66
                 header('HTTP/1.0 401 Unauthorized');
67 67
                 echo json_encode(array("failed"=>'Invalid token, please reauthorize user'), JSON_FORCE_OBJECT);
68 68
                 exit;
69 69
             }
70
-        }else {
70
+        } else {
71 71
             header('HTTP/1.0 401 Unauthorized');
72 72
             echo json_encode(array("failed"=>'No authorization token provided'), JSON_FORCE_OBJECT);
73 73
             exit;
@@ -98,23 +98,23 @@  discard block
 block discarded – undo
98 98
                         $json = json_encode($result, JSON_PRETTY_PRINT);
99 99
 
100 100
                         echo($json);
101
-                    }else {
101
+                    } else {
102 102
                         header('HTTP/1.0 401 Unauthorized');
103 103
                         echo json_encode(array("failed"=>"Invalid token"), JSON_FORCE_OBJECT);
104 104
                         exit;
105 105
                     }
106
-                }else {
106
+                } else {
107 107
                     header('HTTP/1.0 400 Bad Request');
108 108
                     echo json_encode(array("failed"=>"Bad Reqest"), JSON_FORCE_OBJECT);
109 109
                     exit;
110 110
                 }
111 111
                 
112
-            }else {
112
+            } else {
113 113
                 header('HTTP/1.0 400 Bad Request');
114 114
                 echo json_encode(array("failed"=>"Bad Reqest"), JSON_FORCE_OBJECT);
115 115
                 exit;
116 116
             }
117
-        }else {
117
+        } else {
118 118
             header('HTTP/1.0 401 Unauthorized');
119 119
             echo json_encode(array("failed"=>'No authorization token provided'), JSON_FORCE_OBJECT);
120 120
             exit;
Please login to merge, or discard this patch.
public_html/tc/services/JobSeekerProfile.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
                 $result = JobSeekerController::getJobSeekerProfileByUserId(intval($user_id));
38 38
                 $json = json_encode($result, JSON_PRETTY_PRINT);
39 39
                 echo($json);
40
-            }else {
40
+            } else {
41 41
                 $result = array();
42 42
                 $json = json_encode($result, JSON_PRETTY_PRINT);
43 43
                 echo($json);
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
                 
91 91
                 //$json = json_encode($result, JSON_PRETTY_PRINT);
92 92
                 echo($result);
93
-            }else {
93
+            } else {
94 94
                 $result = array();
95 95
                 $json = json_encode($result, JSON_PRETTY_PRINT);
96 96
                 echo($json);
Please login to merge, or discard this patch.
public_html/tc/services/Content.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
             $json = json_encode($result, JSON_PRETTY_PRINT);
37 37
             header("Content-length:" . strlen($json));
38 38
             echo($json);
39
-            }else {
39
+            } else {
40 40
                 $result = array();
41 41
                 $json = json_encode($result, JSON_PRETTY_PRINT);
42 42
                 echo($json);
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
                 $json = json_encode($result, JSON_PRETTY_PRINT);
52 52
                 header("Content-length:" . strlen($json));
53 53
                 echo($json);
54
-            }else {
54
+            } else {
55 55
                 $result = array();
56 56
                 $json = json_encode($result, JSON_PRETTY_PRINT);
57 57
                 echo($json);
Please login to merge, or discard this patch.
public_html/tc/services/ManagerProfile.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,11 +40,11 @@
 block discarded – undo
40 40
                 if ($result === false) {
41 41
                     header('HTTP/1.0 404 Not Found');
42 42
                     echo json_encode(array("failed" => "Manager Profile does not exist for specified user"), JSON_FORCE_OBJECT);
43
-                }else {
43
+                } else {
44 44
                     $json = json_encode($result, JSON_PRETTY_PRINT);
45 45
                     echo($json);
46 46
                 }
47
-            }else {
47
+            } else {
48 48
                 $result = array();
49 49
                 $json = json_encode($result, JSON_PRETTY_PRINT);
50 50
                 echo($json);
Please login to merge, or discard this patch.
public_html/tc/services/Lookup.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
                 $result = LookupController::getLookupDataByLocaleAndType($locale, $lookupType);
35 35
                 $json = json_encode($result, JSON_PRETTY_PRINT);
36 36
                 echo($json);
37
-            }else {
37
+            } else {
38 38
                 $result = array();
39 39
                 $json = json_encode($result, JSON_PRETTY_PRINT);
40 40
                 echo($json);
Please login to merge, or discard this patch.
public_html/admin/index.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         }
62 62
         header("Refresh:0; url=\"" . REDIRECT_URI_ADMIN . "\"");
63 63
     }
64
-}else {
64
+} else {
65 65
     $_SESSION['openid_connect_state'] = $state;
66 66
     $_SESSION['openid_connect_nonce'] = $nonce;
67 67
 }
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
                 echo("UserAPI.storeSessionUser(" . json_encode($userInfo) . ");");
108 108
                 echo("UserAPI.login(true);");
109 109
             }
110
-            }else {
110
+            } else {
111 111
                 echo("UserAPI.login(false);");
112 112
             }
113 113
         //var isExistingUser = UserAPI.authenticate(UserAPI.getSessionUserAsJSON());
Please login to merge, or discard this patch.