Passed
Push — master ( a309fb...493830 )
by Adam
09:46
created
app/Http/Requests/Job/PaymentRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         $codes = $country->pluck('code', 'id');
28 28
 
29 29
         $price = $this->input('price');
30
-        $priceRule = Rule::requiredIf(fn () => $price > 0);
30
+        $priceRule = Rule::requiredIf(fn() => $price > 0);
31 31
 
32 32
         return [
33 33
             'payment_method' => 'required|in:card,p24',
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -87,10 +87,10 @@  discard block
 block discarded – undo
87 87
         });
88 88
 
89 89
         // we use model instead of repository to avoid putting global criteria to all methods in repository
90
-        $this->router->bind('user_trashed', fn ($id) => User::withTrashed()->findOrFail($id));
90
+        $this->router->bind('user_trashed', fn($id) => User::withTrashed()->findOrFail($id));
91 91
 
92 92
         // we use model instead of repository to avoid putting global criteria to all methods in repository
93
-        $this->router->bind('topic_trashed', fn ($id) => Topic::withTrashed()->findOrFail($id));
93
+        $this->router->bind('topic_trashed', fn($id) => Topic::withTrashed()->findOrFail($id));
94 94
 
95 95
         $this->router->bind('topic', function ($id) {
96 96
             $user = $this->getCurrentRequest()->user();
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
             return Topic::findOrFail($id);
103 103
         });
104 104
 
105
-        $this->router->bind('any_microblog', fn ($id) => Microblog::withoutGlobalScopes()->findOrFail($id));
105
+        $this->router->bind('any_microblog', fn($id) => Microblog::withoutGlobalScopes()->findOrFail($id));
106 106
 
107 107
         parent::boot();
108 108
     }
Please login to merge, or discard this patch.
app/Http/Controllers/Wiki/ShowController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 
30 30
         $parser = app('parser.wiki');
31 31
         $wiki->load(['comments' => function ($query) {
32
-            return $query->orderByDesc('updated_at')->with(['user' => fn ($query) => $query->withTrashed()]);
32
+            return $query->orderByDesc('updated_at')->with(['user' => fn($query) => $query->withTrashed()]);
33 33
         }]);
34 34
 
35 35
         foreach ($wiki->comments as &$comment) {
Please login to merge, or discard this patch.
app/Events/CommentSaved.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public function broadcastOn()
40 40
     {
41
-        return new Channel('topic:' . $this->comment->post?->topic_id);
41
+        return new Channel('topic:' . $this->comment->post ? ->topic_id);
42 42
     }
43 43
 
44 44
     /**
Please login to merge, or discard this patch.
app/Http/Controllers/Microblog/VoteController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
 
99 99
     public function voters(Microblog $microblog)
100 100
     {
101
-        $microblog->load(['voters', 'voters.user' => fn ($query) => $query->select('id', 'name')->withTrashed()]);
101
+        $microblog->load(['voters', 'voters.user' => fn($query) => $query->select('id', 'name')->withTrashed()]);
102 102
 
103 103
         return ['id' => $microblog->id, 'parent_id' => $microblog->parent_id, 'users' => $microblog->voters->pluck('user.name')];
104 104
     }
Please login to merge, or discard this patch.
app/Http/Controllers/Forum/VoteController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
 
88 88
     public function voters(Post $post)
89 89
     {
90
-        $post->load(['votes', 'user' => fn ($query) => $query->select('id', 'name')->withTrashed()]);
90
+        $post->load(['votes', 'user' => fn($query) => $query->select('id', 'name')->withTrashed()]);
91 91
 
92 92
         return [
93 93
             'id' => $post->id,
Please login to merge, or discard this patch.
app/Services/Parser/Parsers/UrlFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
     public function parse(string $text): string
36 36
     {
37
-        return $this->urlPattern->replace($text)->callback(fn (Detail $match) => $this->processLink($match->text()));
37
+        return $this->urlPattern->replace($text)->callback(fn(Detail $match) => $this->processLink($match->text()));
38 38
     }
39 39
 
40 40
     private function processLink(string $url): string
Please login to merge, or discard this patch.
app/Listeners/FlagSubscriber.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,17 +13,17 @@
 block discarded – undo
13 13
 {
14 14
     public function handleTopicDelete(TopicDeleted $event)
15 15
     {
16
-        Flag::whereHas('topics', fn (Builder $query) => $query->withTrashed()->where('id', $event->topic['id']))->delete();
16
+        Flag::whereHas('topics', fn(Builder $query) => $query->withTrashed()->where('id', $event->topic['id']))->delete();
17 17
     }
18 18
 
19 19
     public function handlePostDelete(PostWasDeleted $event)
20 20
     {
21
-        Flag::whereHas('posts', fn (Builder $query) => $query->withTrashed()->where('id', $event->post['id']))->delete();
21
+        Flag::whereHas('posts', fn(Builder $query) => $query->withTrashed()->where('id', $event->post['id']))->delete();
22 22
     }
23 23
 
24 24
     public function handleMicroblogDelete(MicroblogDeleted $event)
25 25
     {
26
-        Flag::whereHas('microblogs', fn (Builder $query) => $query->withTrashed()->where('id', $event->microblog['id']))->delete();
26
+        Flag::whereHas('microblogs', fn(Builder $query) => $query->withTrashed()->where('id', $event->microblog['id']))->delete();
27 27
     }
28 28
 
29 29
     public function subscribe($events)
Please login to merge, or discard this patch.