Passed
Push — dependabot/npm_and_yarn/dev/co... ( c231c8 )
by
unknown
11:30
created
app/Http/ViewComposers/FooterComposer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function compose(View $view)
25 25
     {
26
-        $view->with('footer', Lang::get('common/footer'))
27
-            ->with('date_modified', humanizeDate(new Date(self::DATE_MODIFIED, Config::get('app.local_timezone'))));
26
+        $view->with ('footer', Lang::get ('common/footer'))
27
+            ->with ('date_modified', humanizeDate (new Date (self::DATE_MODIFIED, Config::get ('app.local_timezone'))));
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
app/Http/ViewComposers/SkillComposer.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -29,16 +29,16 @@
 block discarded – undo
29 29
     public function compose(View $view) : void
30 30
     {
31 31
         if (!$this->skillLevels) {
32
-            $this->skillLevels = SkillLevel::all();
32
+            $this->skillLevels = SkillLevel::all ();
33 33
         }
34 34
 
35 35
         if (!$this->skills) {
36
-            $this->skills = Skill::all();
36
+            $this->skills = Skill::all ();
37 37
         }
38 38
 
39
-        $view->with('skills', $this->skills);
40
-        $view->with('skill_levels', $this->skillLevels);
41
-        $view->with('skill_template', Lang::get('common/skills'));
42
-        $view->with('skills_modal', Lang::get('common/skills_modals'));
39
+        $view->with ('skills', $this->skills);
40
+        $view->with ('skill_levels', $this->skillLevels);
41
+        $view->with ('skill_template', Lang::get ('common/skills'));
42
+        $view->with ('skills_modal', Lang::get ('common/skills_modals'));
43 43
     }
44 44
 }
Please login to merge, or discard this patch.
app/Http/ViewComposers/WorkExperienceComposer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,6 +15,6 @@
 block discarded – undo
15 15
      */
16 16
     public function compose(View $view)
17 17
     {
18
-        $view->with('work_template', Lang::get('common/work_experience'));
18
+        $view->with ('work_template', Lang::get ('common/work_experience'));
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
app/Http/ViewComposers/ManagerPortalComposer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
      */
16 16
     public function compose(View $view)
17 17
     {
18
-        $show_demo_notification = Auth::user() !== null && Auth::user()->isDemoManager();
19
-        $view->with([
18
+        $show_demo_notification = Auth::user () !== null && Auth::user ()->isDemoManager ();
19
+        $view->with ([
20 20
             'show_demo_notification' => $show_demo_notification,
21 21
         ]);
22 22
     }
Please login to merge, or discard this patch.
app/Http/ViewComposers/GocComposer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,6 +15,6 @@
 block discarded – undo
15 15
      */
16 16
     public function compose(View $view)
17 17
     {
18
-        $view->with('goc', Lang::get('common/goc'));
18
+        $view->with ('goc', Lang::get ('common/goc'));
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
app/Http/ViewComposers/AlertComposer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,6 +15,6 @@
 block discarded – undo
15 15
      */
16 16
     public function compose(View $view)
17 17
     {
18
-        $view->with('alert', Lang::get('common/alert'));
18
+        $view->with ('alert', Lang::get ('common/alert'));
19 19
     }
20 20
 }
21 21
\ No newline at end of file
Please login to merge, or discard this patch.
app/Http/ViewComposers/RelativeComposer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,6 +15,6 @@
 block discarded – undo
15 15
      */
16 16
     public function compose(View $view)
17 17
     {
18
-        $view->with('relative_template', Lang::get('common/relatives'));
18
+        $view->with ('relative_template', Lang::get ('common/relatives'));
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
app/Http/ViewComposers/CourseComposer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,10 +23,10 @@
 block discarded – undo
23 23
     public function compose(View $view) : void
24 24
     {
25 25
         if (!$this->courseStatuses) {
26
-            $this->courseStatuses = CourseStatus::all();
26
+            $this->courseStatuses = CourseStatus::all ();
27 27
         }
28 28
 
29
-        $view->with('course_status', $this->courseStatuses);
30
-        $view->with('course_template', Lang::get('common/course'));
29
+        $view->with ('course_status', $this->courseStatuses);
30
+        $view->with ('course_template', Lang::get ('common/course'));
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
app/Http/ViewComposers/DegreeComposer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,10 +23,10 @@
 block discarded – undo
23 23
     public function compose(View $view) : void
24 24
     {
25 25
         if (!$this->degreeTypes) {
26
-            $this->degreeTypes = DegreeType::all();
26
+            $this->degreeTypes = DegreeType::all ();
27 27
         }
28 28
 
29
-        $view->with('degree_types', $this->degreeTypes);
30
-        $view->with('degree_template', Lang::get('common/degree'));
29
+        $view->with ('degree_types', $this->degreeTypes);
30
+        $view->with ('degree_template', Lang::get ('common/degree'));
31 31
     }
32 32
 }
Please login to merge, or discard this patch.