@@ -159,7 +159,7 @@ |
||
159 | 159 | private function mark($notifications) |
160 | 160 | { |
161 | 161 | $ids = $notifications |
162 | - ->reject(fn (Notification $notification) => $notification->read_at !== null) |
|
162 | + ->reject(fn(Notification $notification) => $notification->read_at !== null) |
|
163 | 163 | ->pluck('id') |
164 | 164 | ->all(); |
165 | 165 |
@@ -31,7 +31,7 @@ |
||
31 | 31 | |
32 | 32 | public function parse(string $text): string |
33 | 33 | { |
34 | - return preg::replace_callback(self::REGEXP_URL, fn (array $match) => $this->processLink($match[0]), $text); |
|
34 | + return preg::replace_callback(self::REGEXP_URL, fn(array $match) => $this->processLink($match[0]), $text); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | private function processLink(string $url): string |
@@ -27,7 +27,7 @@ |
||
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', |
@@ -87,10 +87,10 @@ discard block |
||
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 |
||
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 | } |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | { |
11 | 11 | parent::__construct($resource); |
12 | 12 | |
13 | - TagResource::urlResolver(fn ($name) => route('microblog.tag', [urlencode($name)])); |
|
13 | + TagResource::urlResolver(fn($name) => route('microblog.tag', [urlencode($name)])); |
|
14 | 14 | } |
15 | 15 | |
16 | 16 | public function toArray($request) |
@@ -22,20 +22,20 @@ discard block |
||
22 | 22 | |
23 | 23 | return array_merge_recursive($result, [ |
24 | 24 | 'assets' => $assets, |
25 | - 'tags' => $this->whenLoaded('tags', fn () => TagResource::collection($this->resource->tags)), |
|
25 | + 'tags' => $this->whenLoaded('tags', fn() => TagResource::collection($this->resource->tags)), |
|
26 | 26 | 'is_sponsored' => $this->resource->is_sponsored, |
27 | 27 | 'metadata' => encrypt([Microblog::class => $this->resource->id]), |
28 | 28 | 'deleted_at' => $this->resource->deleted_at, |
29 | 29 | |
30 | 30 | 'permissions' => [ |
31 | - 'moderate' => $this->when($request->user(), fn () => $request->user()->can('moderate', $this->resource), false) |
|
31 | + 'moderate' => $this->when($request->user(), fn() => $request->user()->can('moderate', $this->resource), false) |
|
32 | 32 | ], |
33 | 33 | |
34 | 34 | $this->mergeWhen($this->resource->relationLoaded('voters'), function () { |
35 | 35 | $collection = $this->resource->voters->pluck('user.name'); |
36 | 36 | |
37 | 37 | return [ |
38 | - 'voters' => $collection->when($collection->count() > 10, fn ($collection) => $collection->splice(0, 10)->concat(['...'])) |
|
38 | + 'voters' => $collection->when($collection->count() > 10, fn($collection) => $collection->splice(0, 10)->concat(['...'])) |
|
39 | 39 | ]; |
40 | 40 | }) |
41 | 41 | ]); |
@@ -29,7 +29,7 @@ |
||
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) { |