Completed
Branch master (e308ef)
by Grant
06:04
created
public_html/tc/model/ManagerProfileWithDetails.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@  discard block
 block discarded – undo
6 6
  * and open the template in the editor.
7 7
  */
8 8
 
9
-class ManagerProfileWithDetails implements JsonSerializable{
9
+class ManagerProfileWithDetails implements JsonSerializable {
10 10
     
11 11
     private $manager_profile;
12 12
     private $manager_profile_details;
13 13
     private $user;
14 14
     
15
-    public function __construct($manager_profile = null,$manager_profile_details = null, $user = null) {
15
+    public function __construct($manager_profile = null, $manager_profile_details = null, $user = null) {
16 16
         $this->manager_profile = $manager_profile;
17 17
         $this->manager_profile_details = $manager_profile_details;
18 18
         $this->user = $user;
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
         $getter_names = get_class_methods(get_class($this));
23 23
         $gettable_attributes = array();
24 24
         foreach ($getter_names as $key => $value) {
25
-            if(substr($value, 0, 3) === 'get') {
25
+            if (substr($value, 0, 3) === 'get') {
26 26
                 $gettable_attributes[strtolower(substr($value, 3, strlen($value)))] = $this->$value();
27 27
             }
28 28
         }
Please login to merge, or discard this patch.
public_html/tc/model/Label.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
  *
11 11
  * @author gregg
12 12
  */
13
-class Label implements JsonSerializable{
13
+class Label implements JsonSerializable {
14 14
 
15 15
     protected $labelKey;
16 16
     protected $labelValue;
Please login to merge, or discard this patch.
public_html/tc/model/BasicWorkEnvironment.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,4 +62,4 @@
 block discarded – undo
62 62
     }
63 63
 
64 64
 }
65
-   
66 65
\ No newline at end of file
66
+    
67 67
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
     private $telework_allowed;
8 8
     private $flexible_allowed;
9 9
 
10
-    public function __construct($id=null, $remote_allowed=null, $telework_allowed=null, $flexible_allowed=null) {
10
+    public function __construct($id = null, $remote_allowed = null, $telework_allowed = null, $flexible_allowed = null) {
11 11
         $this->id = $id;
12 12
         $this->remote_allowed = $remote_allowed;
13 13
         $this->telework_allowed = $telework_allowed;
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
         $getter_names = get_class_methods(get_class($this));
19 19
         $gettable_attributes = array();
20 20
         foreach ($getter_names as $key => $value) {
21
-            if(substr($value, 0, 3) === 'get') {
21
+            if (substr($value, 0, 3) === 'get') {
22 22
                 $gettable_attributes[strtolower(substr($value, 3, strlen($value)))] = $this->$value();
23 23
             }
24 24
         }
Please login to merge, or discard this patch.
public_html/tc/model/User.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-class User implements JsonSerializable{
3
+class User implements JsonSerializable {
4 4
 
5 5
     protected $user_id;
6 6
     protected $email;
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         $getter_names = get_class_methods(get_class($this));
33 33
         $gettable_attributes = array();
34 34
         foreach ($getter_names as $key => $value) {
35
-            if(substr($value, 0, 3) === 'get') {
35
+            if (substr($value, 0, 3) === 'get') {
36 36
                 $gettable_attributes[strtolower(substr($value, 3, strlen($value)))] = $this->$value();
37 37
             }
38 38
         }
Please login to merge, or discard this patch.
public_html/tc/model/File.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
     protected $mime_type;
7 7
     protected $size;
8 8
     
9
-    public function __construct($file=null, $mime_type=null, $size=null) {
9
+    public function __construct($file = null, $mime_type = null, $size = null) {
10 10
         $this->file = $file;
11 11
         $this->mime_type = $mime_type;
12 12
         $this->size = $size;
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
         $getter_names = get_class_methods(get_class($this));
18 18
         $gettable_attributes = array();
19 19
         foreach ($getter_names as $key => $value) {
20
-            if(substr($value, 0, 3) === 'get') {
20
+            if (substr($value, 0, 3) === 'get') {
21 21
                 $gettable_attributes[strtolower(substr($value, 3, strlen($value)))] = $this->$value();
22 22
             }
23 23
         }
Please login to merge, or discard this patch.
public_html/tc/model/JobPosters.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  *
12 12
  * @author GBowden
13 13
  */
14
-class JobPosters implements JsonSerializable{
14
+class JobPosters implements JsonSerializable {
15 15
     
16 16
     protected $jobs;
17 17
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     }
21 21
     
22 22
     public function jsonSerialize() {
23
-        return array( 'jobs' => $this->jobs );
23
+        return array('jobs' => $this->jobs);
24 24
     }
25 25
     
26 26
     public function getJobs() {
Please login to merge, or discard this patch.
public_html/tc/model/SkillDeclaration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-class SkillDeclaration implements JsonSerializable{
3
+class SkillDeclaration implements JsonSerializable {
4 4
     
5 5
     protected $skill_declaration_id;
6 6
     protected $skill;
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     protected $description;
12 12
     protected $last_updated;
13 13
     
14
-    public function __construct($skill_declaration_id=null, $skill=null, $criteria_id=null, $criteria_type=null, $experience_level_id=null, $skill_level_id=null, $description=null, $last_updated=null) {
14
+    public function __construct($skill_declaration_id = null, $skill = null, $criteria_id = null, $criteria_type = null, $experience_level_id = null, $skill_level_id = null, $description = null, $last_updated = null) {
15 15
         $this->skill_declaration_id = $skill_declaration_id;
16 16
         $this->skill = $skill;
17 17
         $this->criteria_id = $criteria_id;
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         $getter_names = get_class_methods(get_class($this));
27 27
         $gettable_attributes = array();
28 28
         foreach ($getter_names as $key => $value) {
29
-            if(substr($value, 0, 3) === 'get') {
29
+            if (substr($value, 0, 3) === 'get') {
30 30
                 $gettable_attributes[strtolower(substr($value, 3, strlen($value)))] = $this->$value();
31 31
             }
32 32
         }
Please login to merge, or discard this patch.
public_html/tc/model/WorkEnvironment.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,4 +65,4 @@
 block discarded – undo
65 65
 
66 66
 
67 67
 }
68
-   
69 68
\ No newline at end of file
69
+    
70 70
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
      * @param BasicWorkEnvironment $basic_work_environment
11 11
      * @param WorkplacePhotoCaption[] $workplace_photo_captions
12 12
      */
13
-    public function __construct($basic_work_environment=null,$workplace_photo_captions=[]) {
13
+    public function __construct($basic_work_environment = null, $workplace_photo_captions = []) {
14 14
         $this->basic_work_environment = $basic_work_environment;
15 15
         $this->workplace_photo_captions = $workplace_photo_captions;
16 16
     }
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
         $getter_names = get_class_methods(get_class($this));
20 20
         $gettable_attributes = array();
21 21
         foreach ($getter_names as $key => $value) {
22
-            if(substr($value, 0, 3) === 'get') {
22
+            if (substr($value, 0, 3) === 'get') {
23 23
                 $gettable_attributes[strtolower(substr($value, 3, strlen($value)))] = $this->$value();
24 24
             }
25 25
         }
Please login to merge, or discard this patch.
public_html/tc/model/Locale.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * and open the template in the editor.
7 7
  */
8 8
 
9
-class Locale{
9
+class Locale {
10 10
     
11 11
     private $locale_id;
12 12
     private $locale_iso;
Please login to merge, or discard this patch.