Skip to content

Commit 697bc61

Browse files
committed
formatting
1 parent 9532bc9 commit 697bc61

2 files changed

Lines changed: 3 additions & 8 deletions

File tree

rector.php

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,9 @@
55
use Rector\Config\RectorConfig;
66

77
return RectorConfig::configure()
8-
->withPaths([
9-
__DIR__ . '/src',
10-
__DIR__ . '/tests',
11-
])
8+
->withPaths([__DIR__ . "/src", __DIR__ . "/tests"])
129
// uncomment to reach your current PHP version
13-
->withPhpSets(
14-
php82: true,
15-
)
10+
->withPhpSets(php82: true)
1611
->withPreparedSets(
1712
deadCode: true,
1813
codeQuality: true,

tests/ArchitectureTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ private function getPhpFiles(string $dir): array
2929
public function testNoForbiddenGlobals(): void
3030
{
3131
// Use the newest supported parser API
32-
$parser = new ParserFactory()->createForNewestSupportedVersion();
32+
$parser = (new ParserFactory())->createForNewestSupportedVersion();
3333

3434
$errors = [];
3535

0 commit comments

Comments
 (0)