Skip to content

Commit cf2f24a

Browse files
bambamboolegithub-actions[bot]
authored andcommitted
Apply pint changes
1 parent fa3bc4e commit cf2f24a

File tree

4 files changed

+100
-102
lines changed

4 files changed

+100
-102
lines changed

src/Functional.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22
declare(strict_types=1);
3+
34
namespace Xentral\LaravelDocs;
45

56
#[\Attribute(\Attribute::TARGET_CLASS)]
@@ -10,7 +11,5 @@ public function __construct(
1011
public string $text,
1112
public array $uses = [],
1213
public array $links = [],
13-
)
14-
{
15-
}
14+
) {}
1615
}

src/FunctionalDocBlockExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ private function parseDocComment(string $docComment, string $defaultTitle, strin
154154
str_starts_with($cleanAnnotation, '@navid ') ||
155155
str_starts_with($cleanAnnotation, '@navparent ') ||
156156
str_starts_with($cleanAnnotation, '@uses ') ||
157-
str_starts_with($cleanAnnotation, '@uses\\')||
157+
str_starts_with($cleanAnnotation, '@uses\\') ||
158158
str_starts_with($cleanAnnotation, '@link ') ||
159159
str_starts_with($cleanAnnotation, '@links ')) {
160160
continue; // Skip but don't break

0 commit comments

Comments
 (0)