Passed
Push — feature/immutable-application-... ( d4dc87...b29460 )
by Grant
08:27
created
app/Providers/ViewComposerServiceProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
         View::composer(
66 66
             ['common/relatives','common/reference','common/relatives-projects',
67
-             'common/sample', 'common/skill', 'common/modals/create_reference'],
67
+                'common/sample', 'common/skill', 'common/modals/create_reference'],
68 68
             'App\Http\ViewComposers\RelativeComposer'
69 69
         );
70 70
 
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -55,8 +55,8 @@  discard block
 block discarded – undo
55 55
     protected function mapWebRoutes()
56 56
     {
57 57
         Route::middleware('web')
58
-             ->namespace($this->namespace)
59
-             ->group(base_path('routes/web.php'));
58
+                ->namespace($this->namespace)
59
+                ->group(base_path('routes/web.php'));
60 60
     }
61 61
 
62 62
     /**
@@ -69,8 +69,8 @@  discard block
 block discarded – undo
69 69
     protected function mapApiRoutes()
70 70
     {
71 71
         Route::prefix('api')
72
-             ->middleware('api')
73
-             ->namespace($this->namespace)
74
-             ->group(base_path('routes/api.php'));
72
+                ->middleware('api')
73
+                ->namespace($this->namespace)
74
+                ->group(base_path('routes/api.php'));
75 75
     }
76 76
 }
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
@@ -198,12 +198,12 @@
 block discarded – undo
198 198
                 'logout_link' => route('manager.logout'),
199 199
             ];
200 200
         } elseif (WhichPortal::isAdminPortal()) {
201
-             $loginModals = [
201
+                $loginModals = [
202 202
                 'modals' => Lang::get('common/login_modals'),
203 203
                 'register_link' => route('register'),
204 204
                 'login_link' => backpack_url('login'),
205 205
                 'logout_link' => backpack_url('logout'),
206
-             ];
206
+                ];
207 207
         } else {
208 208
             $loginModals = [
209 209
                 'modals' => Lang::get('common/login_modals'),
Please login to merge, or discard this patch.
app/Http/Middleware/Authenticate.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 class Authenticate extends Middleware
7 7
 {
8 8
     /**
9
-    * Get the path the user should be redirected to when they are not authenticated.
10
-    *
11
-    * @param  \Illuminate\Http\Request  $request
12
-    * @return string
13
-    */
9
+     * Get the path the user should be redirected to when they are not authenticated.
10
+     *
11
+     * @param  \Illuminate\Http\Request  $request
12
+     * @return string
13
+     */
14 14
     protected function redirectTo($request)
15 15
     {
16 16
         if (WhichPortal::isManagerPortal()) {
Please login to merge, or discard this patch.
app/Http/Middleware/VerifyCsrfToken.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,6 +50,6 @@
 block discarded – undo
50 50
                 )
51 51
             );
52 52
         }
53
-         return $response;
53
+            return $response;
54 54
     }
55 55
 }
Please login to merge, or discard this patch.
app/Http/Controllers/Api/JobApiController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      * Convert a job poster to the array expected by API requests,
30 30
      * with all criteria,
31 31
      * and with translation arrays in both languages.
32
-    *
32
+     *
33 33
      * @param  \App\Models\JobPoster $job Incoming Job Poster object.
34 34
      * @return mixed[]
35 35
      */
Please login to merge, or discard this patch.
app/Http/Controllers/ExperienceController.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -26,12 +26,12 @@
 block discarded – undo
26 26
     }
27 27
 
28 28
     /**
29
-    * Show the form for editing the applicant's experience
30
-    *
31
-    * @param  \Illuminate\Http\Request $request   Incoming request object.
32
-    * @param  \App\Models\Applicant    $applicant Incoming applicant object.
33
-    * @return \Illuminate\Http\Response
34
-    */
29
+     * Show the form for editing the applicant's experience
30
+     *
31
+     * @param  \Illuminate\Http\Request $request   Incoming request object.
32
+     * @param  \App\Models\Applicant    $applicant Incoming applicant object.
33
+     * @return \Illuminate\Http\Response
34
+     */
35 35
     public function edit(Request $request, Applicant $applicant)
36 36
     {
37 37
         return view('applicant/profile_02_experience', [
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/JobPosterCrudController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -177,8 +177,8 @@
 block discarded – undo
177 177
             'type' => 'date_picker',
178 178
             'label' => 'Letter of Offer Issuance Date',
179 179
             'date_picker_options' => [
180
-               'todayBtn' => 'linked',
181
-               'format' => 'yyyy-mm-dd',
180
+                'todayBtn' => 'linked',
181
+                'format' => 'yyyy-mm-dd',
182 182
             ],
183 183
         ]);
184 184
         if ($this->crud->getCurrentEntry() &&
Please login to merge, or discard this patch.
app/Utilities/HandleNullState.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public function getFunctions(): array
14 14
     {
15 15
         return [
16
-          new Twig_SimpleFunction('handleNullState', [$this, 'handleNullState']),
16
+            new Twig_SimpleFunction('handleNullState', [$this, 'handleNullState']),
17 17
         ];
18 18
     }
19 19
 
Please login to merge, or discard this patch.