Skip to content

Commit 923fbf3

Browse files
committed
php cs lint correction
1 parent eff5fa0 commit 923fbf3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/LaravelRequestDocs.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function getDocs(
4747
Request::METHOD_PATCH => $showPatch,
4848
Request::METHOD_DELETE => $showDelete,
4949
Request::METHOD_HEAD => $showHead,
50-
], fn(bool $shouldShow) => $shouldShow);
50+
], fn (bool $shouldShow) => $shouldShow);
5151

5252
/** @var string[] $methods */
5353
$methods = array_keys($filteredMethods);
@@ -402,7 +402,7 @@ private function customParamsDocComment(string $docComment): array
402402
$comments = $this->multiExplode([' ', '|'], $comment);
403403

404404
if (count($comments) > 0) {
405-
$params[$comments[0]] = array_values(array_filter($comments, fn($item) => $item !== $comments[0]));
405+
$params[$comments[0]] = array_values(array_filter($comments, fn ($item) => $item !== $comments[0]));
406406
}
407407
}
408408

src/LaravelRequestDocsServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function configurePackage(Package $package): void
2020
->hasConfigFile('request-docs')
2121
// ->hasAssets()
2222
->hasViews();
23-
// ->hasAssets();
23+
// ->hasAssets();
2424
// publish resources/dist/_astro to public/
2525
$this->publishes([
2626
__DIR__.'/../resources/dist/_astro' => public_path('request-docs/_astro'),

0 commit comments

Comments
 (0)