Completed
Branch master (e308ef)
by Grant
06:04
created
public_html/tc/controller/TeamCultureController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
         $previousEntry = TeamCultureDAO::getTeamCultureNonLocalizedForManagerProfile($managerProfileId);
17 17
         if ($previousEntry) {
18 18
             $result = TeamCultureDAO::updateTeamCultureForManagerProfile($teamCulture, $managerProfileId);
19
-        } else {
19
+        }else {
20 20
             $result = TeamCultureDAO::createTeamCultureForManagerProfile($teamCulture, $managerProfileId);
21 21
         }
22 22
         return $result;
Please login to merge, or discard this patch.
public_html/tc/controller/MicroReferenceController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@
 block discarded – undo
4 4
 require_once '../model/ApplicationMicroReference.php';
5 5
 require_once '../dao/MicroReferenceDAO.php';
6 6
 
7
-class MicroReferenceController{
7
+class MicroReferenceController {
8 8
     
9
-    public static function getAllMicroReferencesForJobApplication($jobPosterApplicationId, $locale){
9
+    public static function getAllMicroReferencesForJobApplication($jobPosterApplicationId, $locale) {
10 10
         
11 11
         $applicationMicroReference = MicroReferenceDAO::getApplicationMicroReferencesForJobApplication($jobPosterApplicationId, $locale);
12 12
                 
Please login to merge, or discard this patch.
public_html/tc/controller/ContentController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 ini_set("display_errors", 1);
6 6
 set_time_limit(0);
7 7
 
8
-if(!isset($_SESSION)){
8
+if (!isset($_SESSION)) {
9 9
     session_start();
10 10
 }
11 11
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public static function getContentByLocale($locale) {
30 30
         
31 31
         $content = new Content();
32
-        $labels = ContentDAO::getContentByLocale($locale,"label");
32
+        $labels = ContentDAO::getContentByLocale($locale, "label");
33 33
         //var_dump($labels);
34 34
         $content->setContent($labels);
35 35
         //var_dump($content);
Please login to merge, or discard this patch.