Passed
Push — dependabot/npm_and_yarn/dev/co... ( c231c8 )
by
unknown
11:30
created
app/Console/Kernel.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
         //          ->hourly();
29 29
 
30 30
         // start the queue daemon, if its not running
31
-        if (!$this->osProcessIsRunning('queue:work')) {
32
-            $schedule->command('queue:work')->everyMinute();
31
+        if (!$this->osProcessIsRunning ('queue:work')) {
32
+            $schedule->command ('queue:work')->everyMinute ();
33 33
         }
34 34
     }
35 35
 
@@ -40,9 +40,9 @@  discard block
 block discarded – undo
40 40
      */
41 41
     protected function commands(): void
42 42
     {
43
-        $this->load(__DIR__.'/Commands');
43
+        $this->load (__DIR__.'/Commands');
44 44
 
45
-        require base_path('routes/console.php');
45
+        require base_path ('routes/console.php');
46 46
     }
47 47
 
48 48
     /**
@@ -54,14 +54,14 @@  discard block
 block discarded – undo
54 54
     protected function osProcessIsRunning(string $needle): bool
55 55
     {
56 56
         // get process status. the "-ww"-option is important to get the full output!
57
-        exec('ps aux -ww', $process_status);
57
+        exec ('ps aux -ww', $process_status);
58 58
 
59 59
 
60 60
         // search $needle in process status
61
-        $result = array_filter(
61
+        $result = array_filter (
62 62
             $process_status,
63 63
             function ($var) use ($needle) {
64
-                return strpos($var, $needle);
64
+                return strpos ($var, $needle);
65 65
             }
66 66
         );
67 67
 
Please login to merge, or discard this patch.
app/Services/WhichPortal.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -10,34 +10,34 @@
 block discarded – undo
10 10
 
11 11
     public function isApplicantPortal()
12 12
     {
13
-        return !$this->isManagerPortal() && !$this->isAdminPortal();
13
+        return !$this->isManagerPortal () && !$this->isAdminPortal ();
14 14
     }
15 15
 
16 16
     public function isManagerPortal()
17 17
     {
18
-        $url = URL::current();
19
-        return $this->urlIsManagerPortal($url);
18
+        $url = URL::current ();
19
+        return $this->urlIsManagerPortal ($url);
20 20
     }
21 21
 
22 22
     public function isAdminPortal()
23 23
     {
24
-        $url = URL::current();
25
-        return $this->urlIsAdminPortal($url);
24
+        $url = URL::current ();
25
+        return $this->urlIsAdminPortal ($url);
26 26
     }
27 27
 
28 28
     public function urlIsManagerPortal($url): bool
29 29
     {
30
-        $baseUrl = config('app.url');
31
-        $managerPrefix = config('app.manager_prefix');
30
+        $baseUrl = config ('app.url');
31
+        $managerPrefix = config ('app.manager_prefix');
32 32
         $managerPattern = "#^$baseUrl/(\w+/)?$managerPrefix(/.*)?$#";
33
-        return preg_match($managerPattern, $url);
33
+        return preg_match ($managerPattern, $url);
34 34
     }
35 35
 
36 36
     public function urlIsAdminPortal($url): bool
37 37
     {
38
-        $baseUrl = config('app.url');
39
-        $adminPrefix = config('backpack.base.route_prefix', 'admin');
38
+        $baseUrl = config ('app.url');
39
+        $adminPrefix = config ('backpack.base.route_prefix', 'admin');
40 40
         $adminPattern = "#^$baseUrl/(\w+/)?$adminPrefix(/.*)?$#";
41
-        return preg_match($adminPattern, $url);
41
+        return preg_match ($adminPattern, $url);
42 42
     }
43 43
 }
Please login to merge, or discard this patch.
app/Services/Validation/RegistrationValidator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public static function userValidator(array $data)
40 40
     {
41
-        return Validator::make($data, self::basicRules());
41
+        return Validator::make ($data, self::basicRules ());
42 42
     }
43 43
 
44 44
     /**
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public static function managerValidator(array $data)
51 51
     {
52
-        $managerRules = array_merge(self::basicRules(), self::managerRegistrationExtraRules());
53
-        return Validator::make($data, $managerRules);
52
+        $managerRules = array_merge (self::basicRules (), self::managerRegistrationExtraRules ());
53
+        return Validator::make ($data, $managerRules);
54 54
     }
55 55
 
56 56
     /**
@@ -61,6 +61,6 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public static function finalizeManagerValidator(array $data)
63 63
     {
64
-        return Validator::make($data, self::managerRegistrationExtraRules());
64
+        return Validator::make ($data, self::managerRegistrationExtraRules ());
65 65
     }
66 66
 }
Please login to merge, or discard this patch.
app/Services/Validation/Rules/PasswordCorrectRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@
 block discarded – undo
11 11
 {
12 12
     public function passes($attribute, $value)
13 13
     {
14
-        return Hash::check($value, Auth::user()->getAuthPassword());
14
+        return Hash::check ($value, Auth::user ()->getAuthPassword ());
15 15
     }
16 16
 
17 17
     public function message()
18 18
     {
19
-        return Lang::get('validation.password_correct');
19
+        return Lang::get ('validation.password_correct');
20 20
     }
21 21
 }
Please login to merge, or discard this patch.
app/Services/Validation/Rules/ValidIdRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     public function passes($attribute, $value)
35 35
     {
36 36
         $model = $this->className;
37
-        return $model::where('id', $value)->exists();
37
+        return $model::where ('id', $value)->exists ();
38 38
     }
39 39
 
40 40
     /**
@@ -44,6 +44,6 @@  discard block
 block discarded – undo
44 44
      */
45 45
     public function message()
46 46
     {
47
-        return Lang::get('validation.invalid_id');
47
+        return Lang::get ('validation.invalid_id');
48 48
     }
49 49
 }
Please login to merge, or discard this patch.
app/Services/Validation/Rules/LinkedInUrlRule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function passes($attribute, $value)
25 25
     {
26
-        return preg_match('/' . self::PATTERN . '/', $value);
26
+        return preg_match ('/'.self::PATTERN.'/', $value);
27 27
     }
28 28
 
29 29
     /**
@@ -33,6 +33,6 @@  discard block
 block discarded – undo
33 33
      */
34 34
     public function message()
35 35
     {
36
-        return Lang::get('validation.custom.linkedin_url');
36
+        return Lang::get ('validation.custom.linkedin_url');
37 37
     }
38 38
 }
Please login to merge, or discard this patch.
app/Services/Validation/Rules/ApplicantHasRelationRule.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,12 +32,12 @@
 block discarded – undo
32 32
      */
33 33
     public function passes($attribute, $value)
34 34
     {
35
-        return $this->applicant->getRelationValue($this->relation)
36
-            ->pluck('id')->contains($value);
35
+        return $this->applicant->getRelationValue ($this->relation)
36
+            ->pluck ('id')->contains ($value);
37 37
     }
38 38
 
39 39
     public function message()
40 40
     {
41
-        return Lang::get('validation.applicant_has_relation');
41
+        return Lang::get ('validation.applicant_has_relation');
42 42
     }
43 43
 }
Please login to merge, or discard this patch.
app/Services/Validation/Rules/SkillDeclarationBelongsToUserRule.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,12 +18,12 @@
 block discarded – undo
18 18
      */
19 19
     public function passes($attribute, $value)
20 20
     {
21
-        return SkillDeclaration::find($value) &&
22
-            SkillDeclaration::find($value)->applicant->user->id == Auth::user()->id;
21
+        return SkillDeclaration::find ($value) &&
22
+            SkillDeclaration::find ($value)->applicant->user->id == Auth::user ()->id;
23 23
     }
24 24
 
25 25
     public function message()
26 26
     {
27
-        return Lang::get('validation.user_owns_skill_declaration');
27
+        return Lang::get ('validation.user_owns_skill_declaration');
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
app/Services/Validation/Rules/ReferencesValidator.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -13,25 +13,25 @@
 block discarded – undo
13 13
     public function __construct(Applicant $applicant)
14 14
     {
15 15
         $this->applicant = $applicant;
16
-        $this->relationship_id = Relationship::all()->pluck('id');
16
+        $this->relationship_id = Relationship::all ()->pluck ('id');
17 17
     }
18 18
     public function validate(ReferencesValidator $referencesValidator)
19 19
     {
20
-        $uniqueSkillRule = new UniqueApplicantSkillRule($this->applicant, $referencesValidator->id);
20
+        $uniqueSkillRule = new UniqueApplicantSkillRule ($this->applicant, $referencesValidator->id);
21 21
         //This array is reset every time because applicants table can change frequently
22
-        $applicant_ids = Applicant::all()->pluck('id');
22
+        $applicant_ids = Applicant::all ()->pluck ('id');
23 23
         //Validate basic data is filled in
24
-        Validator::make($referencesValidator->getAttributes(), [
24
+        Validator::make ($referencesValidator->getAttributes (), [
25 25
             'applicant_id' => [
26 26
                 'required',
27
-                Rule::in($applicant_ids->toArray()),      
27
+                Rule::in ($applicant_ids->toArray ()),      
28 28
         ],  
29 29
             'relatonship_id' => [
30 30
             'required',
31
-            Rule::in($this->relationship_id->toArray()),
31
+            Rule::in ($this->relationship_id->toArray ()),
32 32
         ]       
33 33
             
34
-        ])->validate();
34
+        ])->validate ();
35 35
     }
36 36
      
37 37
 }
38 38
\ No newline at end of file
Please login to merge, or discard this patch.