Passed
Push — master ( 25098a...6e44a2 )
by Thomas
07:21
created
app/Http/Middleware/SetLocale.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     private function setLocale(string $locale)
18 18
     {
19 19
         // Check if is allowed and set default locale if not
20
-        if (! language()->allowed($locale)) {
20
+        if (!language()->allowed($locale)) {
21 21
             $locale = config('app.locale');
22 22
         }
23 23
 
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/MyAccountController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -228,8 +228,8 @@
 block discarded – undo
228 228
             $user = Student::where('id', $this->guard()->user()->id)->first();
229 229
 
230 230
             $user
231
-               ->addMedia($request->fileToUpload)
232
-               ->toMediaCollection('profile-picture');
231
+                ->addMedia($request->fileToUpload)
232
+                ->toMediaCollection('profile-picture');
233 233
         }
234 234
 
235 235
         // if the user has been selected for a forced update, move to the next step
Please login to merge, or discard this patch.
app/Traits/FiltersSearchableLevels.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
     public function __invoke(Builder $query, $value, string $property)
11 11
     {
12 12
         $value = collect($value)->toArray();
13
-        $query->where(function (Builder $query) use ($value) {
13
+        $query->where(function(Builder $query) use ($value) {
14 14
             $query->whereIn('level_id', $value)
15
-                ->orWhereHas('children', function (Builder $query) use ($value) {
15
+                ->orWhereHas('children', function(Builder $query) use ($value) {
16 16
                     $query->whereIn('level_id', $value);
17 17
                 });
18 18
         });
Please login to merge, or discard this patch.
app/Http/Controllers/CourseController.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,8 @@  discard block
 block discarded – undo
39 39
 
40 40
     public function search()
41 41
     {
42
-        return QueryBuilder::for(Course::class)->where('campus_id', 1)
42
+        return QueryBuilder::for(Course::class) {
43
+            ->where('campus_id', 1)
43 44
         ->with('room')->withCount('events')->withCount('children')->withCount('enrollments')
44 45
         ->allowedFilters([
45 46
             'name',
@@ -49,6 +50,7 @@  discard block
 block discarded – undo
49 50
             AllowedFilter::exact('teacher_id'),
50 51
         ])
51 52
         ->get();
53
+        }
52 54
     }
53 55
 
54 56
     public function redirectToUserPreferredView()
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
     public function search()
40 40
     {
41
-        return QueryBuilder::for(Course::class)->where('campus_id', 1)
41
+        return QueryBuilder::for (Course::class)->where('campus_id', 1)
42 42
         ->with('room')->withCount('events')->withCount('children')->withCount('enrollments')
43 43
         ->allowedFilters([
44 44
             'name',
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
     public function redirectToUserPreferredView()
54 54
     {
55
-        return match (backpack_user()->preferred_course_view) {
55
+        return match(backpack_user()->preferred_course_view) {
56 56
             'blocks' => redirect(route('get-courses-list')),
57 57
             default => redirect(route('course.index')),
58 58
         };
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/EvaluationTypeCrudController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     {
36 36
         CRUD::addField(['name' => 'name', 'label' => 'Name', 'type' => 'text']);
37 37
 
38
-        CRUD::addField([    // Select2Multiple = n-n relationship (with pivot table)
38
+        CRUD::addField([// Select2Multiple = n-n relationship (with pivot table)
39 39
             'label'     => __('Grade Types'),
40 40
             'type'      => 'select2_multiple',
41 41
             'name'      => 'gradeTypes', // the method that defines the relationship in your Model
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
             'select_all' => true, // show Select All and Clear buttons?
49 49
         ]);
50 50
 
51
-        CRUD::addField([    // Select2Multiple = n-n relationship (with pivot table)
51
+        CRUD::addField([// Select2Multiple = n-n relationship (with pivot table)
52 52
             'label'     => __('Skills'),
53 53
             'type'      => 'select2_multiple',
54 54
             'name'      => 'skills', // the method that defines the relationship in your Model
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/UserCrudController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
                 'label' => trans('backpack::permissionmanager.email'),
48 48
                 'type'  => 'email',
49 49
             ],
50
-            [ // n-n relationship (with pivot table)
50
+            [// n-n relationship (with pivot table)
51 51
                 'label'     => trans('backpack::permissionmanager.roles'), // Table column heading
52 52
                 'type'      => 'select_multiple',
53 53
                 'name'      => 'roles', // the method that defines the relationship in your Model
@@ -66,9 +66,9 @@  discard block
 block discarded – undo
66 66
                 'label' => trans('backpack::permissionmanager.role'),
67 67
             ],
68 68
             config('permission.models.role')::all()->pluck(['name', 'id'])->toArray(),
69
-            function ($value) {
69
+            function($value) {
70 70
                 // if the filter is active
71
-                $this->crud->addClause('whereHas', 'roles', function ($query) use ($value) {
71
+                $this->crud->addClause('whereHas', 'roles', function($query) use ($value) {
72 72
                     $query->where('role_id', '=', $value);
73 73
                 });
74 74
             }
@@ -119,12 +119,12 @@  discard block
 block discarded – undo
119 119
     protected function addFields()
120 120
     {
121 121
         $this->crud->addFields([
122
-            [  // Select2
122
+            [// Select2
123 123
                 'label' => trans('firstname'),
124 124
                 'type' => 'text',
125 125
                 'name' => 'firstname',
126 126
             ],
127
-            [  // Select2
127
+            [// Select2
128 128
                 'label' => trans('lastname'),
129 129
                 'type' => 'text',
130 130
                 'name' => 'lastname',
Please login to merge, or discard this patch.
app/Http/Controllers/ConfigController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 {
11 11
     public function get()
12 12
     {
13
-        if (! backpack_user()->hasPermissionTo('courses.edit')) {
13
+        if (!backpack_user()->hasPermissionTo('courses.edit')) {
14 14
             abort(403);
15 15
         }
16 16
 
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
     public function update(UpdateConfigRequest $request)
25 25
     {
26
-        if (! backpack_user()->hasPermissionTo('courses.edit')) {
26
+        if (!backpack_user()->hasPermissionTo('courses.edit')) {
27 27
             abort(403);
28 28
         }
29 29
 
Please login to merge, or discard this patch.
app/Http/Controllers/LeadStatusController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
         // if the sync with external mailing system is enabled
20 20
         if (config('mailing-system.external_mailing_enabled') == true) {
21 21
 
22
-            match ($request->input('status')) {
22
+            match($request->input('status')) {
23 23
                 1 => $listId = config('mailing-system.mailerlite.activeStudentsListId'),
24 24
                 2, 3 => $listId = config('mailing-system.mailerlite.inactiveStudentsListId'),
25 25
                 default => abort(422, 'List ID not found'),
Please login to merge, or discard this patch.
app/Http/Controllers/HRController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $report_end_date = $request->report_end_date ? Carbon::parse($request->report_end_date) : Carbon::parse($period->end);
33 33
 
34 34
         // if we are dealing with a complete period, add theoretical volumes
35
-        if (! $request->report_start_date && ! $request->report_end_date) {
35
+        if (!$request->report_start_date && !$request->report_end_date) {
36 36
             // ensure the report end date is not before the end date to avoid inconsistent results.
37 37
             $report_end_date = $report_start_date->max($report_end_date);
38 38
 
Please login to merge, or discard this patch.