We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbe0c83 commit 98cafbdCopy full SHA for 98cafbd
.php-cs-fixer.dist.php
@@ -7,7 +7,7 @@
7
8
require_once 'vendor/autoload.php';
9
10
-$config = ConfigBuilder::createFromRuleSet(new DefaultSet())
+$config = ConfigBuilder::createFromRuleSet(new DefaultSet(['static_lambda' => false]))
11
->inDir(__DIR__ . '/src')
12
->inDir(__DIR__ . '/tests')
13
->addFiles([__FILE__])
tests/Pest/ExampleTest.php
@@ -2,6 +2,6 @@
2
3
declare(strict_types=1);
4
5
-test('example', static function (): void {
+test('example', function (): void {
6
expect(true)->toBeTrue();
});
0 commit comments