Passed
Push — bugfix/random-ui-stuff ( 310aaf...d6d2ab )
by Josh
60:17 queued 49:01
created
app/Models/JobPosterQuestionTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@
 block discarded – undo
30 30
         'description'
31 31
     ];
32 32
 
33
-    public function job_poster_question() {
34
-        return $this->belongsTo(\App\Models\JobPosterQuestion::class);
33
+    public function job_poster_question () {
34
+        return $this->belongsTo (\App\Models\JobPosterQuestion::class);
35 35
     }
36 36
 
37 37
 }
Please login to merge, or discard this patch.
app/Models/Assessment.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
      *
36 36
      * @return Illuminate\Database\Eloquent\Relations\Relation
37 37
      */
38
-    public function criterion() // phpcs:ignore
38
+    public function criterion () // phpcs:ignore
39 39
     {
40
-        return $this->belongsTo(Criteria::class, 'criterion_id');
40
+        return $this->belongsTo (Criteria::class, 'criterion_id');
41 41
     }
42 42
 
43 43
     /**
@@ -45,8 +45,8 @@  discard block
 block discarded – undo
45 45
      *
46 46
      * @return Illuminate\Database\Eloquent\Relations\Relation
47 47
      */
48
-    public function assessment_type() // phpcs:ignore
48
+    public function assessment_type () // phpcs:ignore
49 49
     {
50
-        return $this->belongsTo(AssessmentType::class);
50
+        return $this->belongsTo (AssessmentType::class);
51 51
     }
52 52
 }
Please login to merge, or discard this patch.
app/Models/TeamCulture.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@
 block discarded – undo
45 45
         'gc_directory_url'
46 46
     ];
47 47
 
48
-    public function manager()
48
+    public function manager ()
49 49
     {
50
-        return $this->belongsTo(\App\Models\Manager::class);
50
+        return $this->belongsTo (\App\Models\Manager::class);
51 51
     }
52 52
 
53
-    public function team_culture_translations() //phpcs:ignore
53
+    public function team_culture_translations () //phpcs:ignore
54 54
     {
55
-        return $this->hasMany(\App\Models\TeamCultureTranslation::class);
55
+        return $this->hasMany (\App\Models\TeamCultureTranslation::class);
56 56
     }
57 57
 }
Please login to merge, or discard this patch.
app/Models/Criteria.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -63,29 +63,29 @@  discard block
 block discarded – undo
63 63
         'skill_level'
64 64
     ];
65 65
 
66
-    public function criteria_type() //phpcs:ignore
66
+    public function criteria_type () //phpcs:ignore
67 67
     {
68
-        return $this->belongsTo(\App\Models\Lookup\CriteriaType::class);
68
+        return $this->belongsTo (\App\Models\Lookup\CriteriaType::class);
69 69
     }
70 70
 
71
-    public function job_poster() //phpcs:ignore
71
+    public function job_poster () //phpcs:ignore
72 72
     {
73
-        return $this->belongsTo(\App\Models\JobPoster::class);
73
+        return $this->belongsTo (\App\Models\JobPoster::class);
74 74
     }
75 75
 
76
-    public function skill()
76
+    public function skill ()
77 77
     {
78
-        return $this->belongsTo(\App\Models\Skill::class);
78
+        return $this->belongsTo (\App\Models\Skill::class);
79 79
     }
80 80
 
81
-    public function skill_level() //phpcs:ignore
81
+    public function skill_level () //phpcs:ignore
82 82
     {
83
-        return $this->belongsTo(\App\Models\Lookup\SkillLevel::class);
83
+        return $this->belongsTo (\App\Models\Lookup\SkillLevel::class);
84 84
     }
85 85
 
86
-    public function criteria_translations() //phpcs:ignore
86
+    public function criteria_translations () //phpcs:ignore
87 87
     {
88
-        return $this->hasMany(\App\Models\Lookup\CriteriaTypeTranslation::class);
88
+        return $this->hasMany (\App\Models\Lookup\CriteriaTypeTranslation::class);
89 89
     }
90 90
 
91 91
     /**
@@ -93,9 +93,9 @@  discard block
 block discarded – undo
93 93
      *
94 94
      * @return \Illuminate\Database\Eloquent\Collection
95 95
      */
96
-    public function assessments() // phpcs:ignore
96
+    public function assessments () // phpcs:ignore
97 97
     {
98
-        return $this->hasMany(\App\Models\Assessment::class, 'criterion_id');
98
+        return $this->hasMany (\App\Models\Assessment::class, 'criterion_id');
99 99
     }
100 100
 
101 101
     /**
@@ -103,11 +103,11 @@  discard block
 block discarded – undo
103 103
      *
104 104
      * @return string
105 105
      */
106
-    public function getLevelNameAttribute(): string
106
+    public function getLevelNameAttribute (): string
107 107
     {
108 108
         $level = $this->skill_level->name;
109 109
         $type = $this->skill->skill_type->name;
110
-        return Lang::get("common/lookup/skill_level.$level.$type.name");
110
+        return Lang::get ("common/lookup/skill_level.$level.$type.name");
111 111
     }
112 112
 
113 113
     /**
@@ -115,10 +115,10 @@  discard block
 block discarded – undo
115 115
      *
116 116
      * @return string
117 117
      */
118
-    public function getLevelDescriptionAttribute() : string
118
+    public function getLevelDescriptionAttribute () : string
119 119
     {
120 120
         $level = $this->skill_level->name;
121 121
         $type = $this->skill->skill_type->name;
122
-        return Lang::get("common/lookup/skill_level.$level.$type.description");
122
+        return Lang::get ("common/lookup/skill_level.$level.$type.description");
123 123
     }
124 124
 }
Please login to merge, or discard this patch.
app/Models/WorkEnvironmentTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         'things_to_know'
27 27
     ];
28 28
 
29
-    public function work_environment() {
30
-        return $this->belongsTo(\App\Models\WorkEnvironment::class);
29
+    public function work_environment () {
30
+        return $this->belongsTo (\App\Models\WorkEnvironment::class);
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
app/Models/RatingGuideQuestion.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -34,9 +34,9 @@  discard block
 block discarded – undo
34 34
      *
35 35
      * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
36 36
      */
37
-    public function job_poster(): \Illuminate\Database\Eloquent\Relations\BelongsTo
37
+    public function job_poster (): \Illuminate\Database\Eloquent\Relations\BelongsTo
38 38
     {
39
-        return $this->belongsTo(\App\Models\JobPoster::class);
39
+        return $this->belongsTo (\App\Models\JobPoster::class);
40 40
     }
41 41
 
42 42
     /**
@@ -44,9 +44,9 @@  discard block
 block discarded – undo
44 44
      *
45 45
      * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
46 46
      */
47
-    public function assessment_type(): \Illuminate\Database\Eloquent\Relations\BelongsTo
47
+    public function assessment_type (): \Illuminate\Database\Eloquent\Relations\BelongsTo
48 48
     {
49
-        return $this->belongsTo(\App\Models\Lookup\AssessmentType::class);
49
+        return $this->belongsTo (\App\Models\Lookup\AssessmentType::class);
50 50
     }
51 51
 
52 52
     /**
@@ -54,8 +54,8 @@  discard block
 block discarded – undo
54 54
      *
55 55
      * @return \Illuminate\Database\Eloquent\Relations\HasMany
56 56
      */
57
-    public function rating_guide_answers(): \Illuminate\Database\Eloquent\Relations\HasMany
57
+    public function rating_guide_answers (): \Illuminate\Database\Eloquent\Relations\HasMany
58 58
     {
59
-        return $this->hasMany(\App\Models\RatingGuideAnswer::class);
59
+        return $this->hasMany (\App\Models\RatingGuideAnswer::class);
60 60
     }
61 61
 }
Please login to merge, or discard this patch.
app/Models/TeamCultureTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,8 @@
 block discarded – undo
35 35
         'how_we_work'
36 36
     ];
37 37
 
38
-    public function team_culture() //phpcs:ignore
38
+    public function team_culture () //phpcs:ignore
39 39
     {
40
-        return $this->belongsTo(\App\Models\TeamCulture::class);
40
+        return $this->belongsTo (\App\Models\TeamCulture::class);
41 41
     }
42 42
 }
Please login to merge, or discard this patch.
app/Models/BaseModel.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      *
18 18
      * @return Date
19 19
      */
20
-    public function freshTimestamp()
20
+    public function freshTimestamp ()
21 21
     {
22 22
         return new Date;
23 23
     }
@@ -28,15 +28,15 @@  discard block
 block discarded – undo
28 28
      * @param  mixed $value
29 29
      * @return Date
30 30
      */
31
-    protected function asDateTime($value)
31
+    protected function asDateTime ($value)
32 32
     {
33
-        $timezone = Config::get('app.timezone');
33
+        $timezone = Config::get ('app.timezone');
34 34
 
35 35
         // If this value is already a Carbon instance, we shall just return it as is.
36 36
         // This prevents us having to re-instantiate a Carbon instance when we know
37 37
         // it already is one, which wouldn't be fulfilled by the DateTime check.
38 38
         if ($value instanceof Carbon) {
39
-            return Date::parse($value, $timezone);
39
+            return Date::parse ($value, $timezone);
40 40
         }
41 41
         if ($value instanceof Date) {
42 42
             return $value;
@@ -45,35 +45,35 @@  discard block
 block discarded – undo
45 45
         // these checks since they will be a waste of time, and hinder performance
46 46
         // when checking the field. We will just return the DateTime right away.
47 47
         if ($value instanceof DateTimeInterface) {
48
-            return new Date(
48
+            return new Date (
49 49
                 //$value->format('Y-m-d H:i:s.u'), $value->getTimeZone()
50
-                $value->format('Y-m-d H:i:s.u'), $timezone
50
+                $value->format ('Y-m-d H:i:s.u'), $timezone
51 51
             );
52 52
         }
53 53
         // If this value is an integer, we will assume it is a UNIX timestamp's value
54 54
         // and format a Carbon object from this timestamp. This allows flexibility
55 55
         // when defining your date fields as they might be UNIX timestamps here.
56
-        if (is_numeric($value)) {
57
-            return Date::createFromTimestamp($value, $timezone);
56
+        if (is_numeric ($value)) {
57
+            return Date::createFromTimestamp ($value, $timezone);
58 58
         }
59 59
         // If the value is in simply year, month, day format, we will instantiate the
60 60
         // Carbon instances from that format. Again, this provides for simple date
61 61
         // fields on the database, while still supporting Carbonized conversion.
62
-        if (preg_match('/^(\d{4})-(\d{1,2})-(\d{1,2})$/', $value)) {
63
-            return Date::createFromFormat('Y-m-d', $value, $timezone)->startOfDay();
62
+        if (preg_match ('/^(\d{4})-(\d{1,2})-(\d{1,2})$/', $value)) {
63
+            return Date::createFromFormat ('Y-m-d', $value, $timezone)->startOfDay ();
64 64
         }
65 65
 
66 66
         // If the date follows the api configured date format, use that.
67
-        $apiFormat = Config::get('app.api_datetime_format');
68
-        $date = DateTime::createFromFormat($apiFormat, $value);
69
-        if ($date && $date->format($apiFormat) == $value) {
67
+        $apiFormat = Config::get ('app.api_datetime_format');
68
+        $date = DateTime::createFromFormat ($apiFormat, $value);
69
+        if ($date && $date->format ($apiFormat) == $value) {
70 70
             return $date;
71 71
         }
72 72
 
73 73
         // Finally, we will just assume this date is in the format used by default on
74 74
         // the database connection and use that format to create the Carbon object
75 75
         // that is returned back out to the developers after we convert it here.
76
-        return Date::createFromFormat($this->getDateFormat(), $value, $timezone);
76
+        return Date::createFromFormat ($this->getDateFormat (), $value, $timezone);
77 77
     }
78 78
 
79 79
     /**
@@ -82,8 +82,8 @@  discard block
 block discarded – undo
82 82
      * @param DateTimeInterface $date
83 83
      * @return void
84 84
      */
85
-    protected function serializeDate(DateTimeInterface $date)
85
+    protected function serializeDate (DateTimeInterface $date)
86 86
     {
87
-        return $date->format(Config::get('app.api_datetime_format'));
87
+        return $date->format (Config::get ('app.api_datetime_format'));
88 88
     }
89 89
 }
Please login to merge, or discard this patch.
app/Models/CriteriaTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@
 block discarded – undo
34 34
         'specificity'
35 35
     ];
36 36
 
37
-    public function criteria()
37
+    public function criteria ()
38 38
     {
39
-        return $this->belongsTo(\App\Models\Lookup\Criteria::class);
39
+        return $this->belongsTo (\App\Models\Lookup\Criteria::class);
40 40
     }
41 41
 }
Please login to merge, or discard this patch.