Skip to content

Commit 66a0d5f

Browse files
committed
bot: fix cs [skip ci]
1 parent c5ca551 commit 66a0d5f

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function factory(string $class, array|callable $defaultAttributes = []): Anonymo
4242
*/
4343
function anonymous(string $class, array|callable $defaultAttributes = []): Factory
4444
{
45-
return new class($class, $defaultAttributes) extends Factory{};
45+
return new class($class, $defaultAttributes) extends Factory {};
4646
}
4747

4848
/**

tests/Functional/AnonymousFactoryTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
use Zenstruck\Foundry\AnonymousFactory;
1616
use Zenstruck\Foundry\Test\Factories;
1717
use Zenstruck\Foundry\Test\ResetDatabase;
18+
1819
use function Zenstruck\Foundry\factory;
1920

2021
/**

tests/Functional/ORMProxyTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
use Zenstruck\Foundry\Tests\Fixtures\Entity\Post;
1717
use Zenstruck\Foundry\Tests\Fixtures\Factories\CategoryFactory;
1818
use Zenstruck\Foundry\Tests\Fixtures\Factories\PostFactory;
19+
1920
use function Zenstruck\Foundry\anonymous;
2021

2122
/**

0 commit comments

Comments
 (0)