Passed
Push — feature/hr-portal ( ab04c7...ea119d )
by Yonathan
10:05 queued 11s
created
app/Models/Lookup/ExperienceLevelTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
  * 
22 22
  * @property \App\Models\Lookup\ExperienceLevel $experience_level
23 23
  */
24
-class ExperienceLevelTranslation extends BaseModel {
24
+class ExperienceLevelTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'experience_level_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function experience_level() {
31
+    public function experience_level(){
32 32
         return $this->belongsTo(\App\Models\Lookup\ExperienceLevel::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.
app/Models/Lookup/JobTermTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
  * 
22 22
  * @property \App\Models\Lookup\JobTerm $job_term
23 23
  */
24
-class JobTermTranslation extends BaseModel {
24
+class JobTermTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'job_term_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function job_term() {
31
+    public function job_term(){
32 32
         return $this->belongsTo(\App\Models\Lookup\JobTerm::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.
app/Models/Lookup/RelationshipTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
  * 
22 22
  * @property \App\Models\Lookup\Relationship $relationship
23 23
  */
24
-class RelationshipTranslation extends BaseModel {
24
+class RelationshipTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'relationship_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function relationship() {
31
+    public function relationship(){
32 32
         return $this->belongsTo(\App\Models\Lookup\Relationship::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.
app/Models/Lookup/SkillLevelTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@
 block discarded – undo
21 21
  * 
22 22
  * @property \App\Models\Lookup\SkillLevel $skill_level
23 23
  */
24
-class SkillLevelTranslation extends BaseModel {
24
+class SkillLevelTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'skill_level_id' => 'int'
28 28
     ];
29 29
     protected $fillable = [];
30 30
 
31
-    public function skill_level() {
31
+    public function skill_level(){
32 32
         return $this->belongsTo(\App\Models\Lookup\SkillLevel::class);
33 33
     }
34 34
 
Please login to merge, or discard this patch.
app/Models/Lookup/AssessmentTypeTranslation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
  *
22 22
  * @property \App\Models\Lookup\AssessmentType $assessment_type
23 23
  */
24
-class AssessmentTypeTranslation extends BaseModel {
24
+class AssessmentTypeTranslation extends BaseModel{
25 25
 
26 26
     protected $casts = [
27 27
         'id' => 'int',
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         'name',
34 34
     ];
35 35
 
36
-    public function assessment_type() {
36
+    public function assessment_type(){
37 37
         return $this->belongsTo(\App\Models\Lookup\AssessmentType::class);
38 38
     }
39 39
 
Please login to merge, or discard this patch.
app/Models/User.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -190,10 +190,10 @@  discard block
 block discarded – undo
190 190
     }
191 191
 
192 192
     /**
193
-    * Check if the user has the specified role.
194
-    * @param string $role This may be either 'applicant', 'manager', 'hr_advisor' or 'admin'.
195
-    * @return boolean
196
-    */
193
+     * Check if the user has the specified role.
194
+     * @param string $role This may be either 'applicant', 'manager', 'hr_advisor' or 'admin'.
195
+     * @return boolean
196
+     */
197 197
     public function hasRole($role)
198 198
     {
199 199
         switch ($role) {
@@ -214,8 +214,8 @@  discard block
 block discarded – undo
214 214
      * Set this user to the specified role.
215 215
      *
216 216
      * @param string $role Must be either 'applicant', 'manager', 'hr_advisor' or 'admin'.
217
-    * @return void
218
-    */
217
+     * @return void
218
+     */
219 219
     public function setRole(string $role): void
220 220
     {
221 221
         $this->user_role()->associate(UserRole::where('name', $role)->firstOrFail());
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
      * Returns a user's full name.
251 251
      *
252 252
      * @return string
253
-    */
253
+     */
254 254
     public function getFullNameAttribute(): string
255 255
     {
256 256
         return $this->first_name . ' ' . $this->last_name;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -234,6 +234,6 @@
 block discarded – undo
234 234
     */
235 235
     public function getFullNameAttribute(): string
236 236
     {
237
-        return $this->first_name . ' ' . $this->last_name;
237
+        return $this->first_name.' '.$this->last_name;
238 238
     }
239 239
 }
Please login to merge, or discard this patch.
app/Http/ViewComposers/MenuComposer.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -238,12 +238,12 @@
 block discarded – undo
238 238
                 'logout_link' => route('hr_advisor.logout'),
239 239
             ];
240 240
         } elseif (WhichPortal::isAdminPortal()) {
241
-             $loginModals = [
241
+                $loginModals = [
242 242
                 'modals' => Lang::get('common/login_modals'),
243 243
                 'register_link' => route('register'),
244 244
                 'login_link' => backpack_url('login'),
245 245
                 'logout_link' => backpack_url('logout'),
246
-             ];
246
+                ];
247 247
         } else {
248 248
             $loginModals = [
249 249
                 'modals' => Lang::get('common/login_modals'),
Please login to merge, or discard this patch.
app/Models/JobPoster.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
      */
367 367
     public function submitted_applications() // phpcs:ignore
368 368
     {
369
-        return $this->hasMany(\App\Models\JobApplication::class)->whereDoesntHave('application_status', function ($query): void {
369
+        return $this->hasMany(\App\Models\JobApplication::class)->whereDoesntHave('application_status', function($query): void {
370 370
             $query->where('name', 'draft');
371 371
         });
372 372
     }
@@ -555,7 +555,7 @@  discard block
 block discarded – undo
555 555
     public function getClassificationMessageAttribute()
556 556
     {
557 557
         if ($this->classification_id !== null && $this->classification_level !== null) {
558
-            return $this->classification->key . '-0' . $this->classification_level;
558
+            return $this->classification->key.'-0'.$this->classification_level;
559 559
         }
560 560
         return null;
561 561
     }
Please login to merge, or discard this patch.
app/Models/Manager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -187,7 +187,7 @@
 block discarded – undo
187 187
     public function getFullNameAttribute(): string
188 188
     {
189 189
         if ($this->user !== null) {
190
-            return $this->user->first_name . ' ' . $this->user->last_name;
190
+            return $this->user->first_name.' '.$this->user->last_name;
191 191
         }
192 192
         return '';
193 193
     }
Please login to merge, or discard this patch.