Skip to content

Commit 31e52fa

Browse files
committed
Fix CS
1 parent b36bcb2 commit 31e52fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PhpDoc/DefaultStubFilesProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function getProjectStubFiles(): array
6767
$filteredStubFiles = $this->getStubFiles();
6868
$filteredStubFiles = array_filter(
6969
$filteredStubFiles,
70-
static fn (string $file): bool => !str_starts_with($file, $phpstanStubsDirectory)
70+
static fn (string $file): bool => !str_starts_with($file, $phpstanStubsDirectory),
7171
);
7272
foreach ($this->composerAutoloaderProjectPaths as $composerAutoloaderProjectPath) {
7373
$composerConfig = ComposerHelper::getComposerConfig($composerAutoloaderProjectPath);

0 commit comments

Comments
 (0)