Skip to content

Commit 5df79b9

Browse files
authoredFeb 12, 2025··
PHP loader: use phpstan includes (#35)
1 parent 18457f0 commit 5df79b9

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
 

‎src/Handler/PhpBaselineHandler.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ public function encodeBaseline(string $comment, array $errors, string $indent):
5555
public function encodeBaselineLoader(array $filePaths, string $indent): string
5656
{
5757
$php = "<?php declare(strict_types = 1);\n\n";
58-
$php .= "return array_merge_recursive(\n";
58+
$php .= "return ['includes' => [\n";
5959

6060
foreach ($filePaths as $filePath) {
61-
$php .= "{$indent}require __DIR__ . '/$filePath',\n";
61+
$php .= "{$indent}__DIR__ . '/$filePath',\n";
6262
}
6363

64-
$php .= ");\n";
64+
$php .= "]];\n";
6565

6666
return $php;
6767
}
+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php declare(strict_types = 1);
22

3-
return array_merge_recursive(
4-
require __DIR__ . '/another.identifier.php',
5-
require __DIR__ . '/missing-identifier.php',
6-
require __DIR__ . '/sample.identifier.php',
7-
);
3+
return ['includes' => [
4+
__DIR__ . '/another.identifier.php',
5+
__DIR__ . '/missing-identifier.php',
6+
__DIR__ . '/sample.identifier.php',
7+
]];

0 commit comments

Comments
 (0)
Please sign in to comment.