php cs fixer

This commit is contained in:
Yisroel Baum 2026-04-19 23:07:48 +03:00
parent 26abaeb739
commit 189493b045
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
17 changed files with 44 additions and 43 deletions

View file

@ -30,11 +30,11 @@ class CreatePlanTest extends TestCase
public function setUp(): void
{
$this->planRepo = new FakePlanRepository;
$this->userRepo = new FakeUserRepository;
$this->textRepo = new FakeTextRepository;
$this->nodeRepo = new FakeNodeRepository;
$this->scheduledNodeRepo = new FakeScheduledNodeRepository;
$this->planRepo = new FakePlanRepository();
$this->userRepo = new FakeUserRepository();
$this->textRepo = new FakeTextRepository();
$this->nodeRepo = new FakeNodeRepository();
$this->scheduledNodeRepo = new FakeScheduledNodeRepository();
$this->userRepo->create(new CreateUserDto(
email: new EmailAddress('test@test.com'),
));
@ -121,7 +121,8 @@ class CreatePlanTest extends TestCase
textId: 0,
));
$this->assertEquals(
1, $this->scheduledNodeRepo->getNumberOfTimesCreateCalled()
1,
$this->scheduledNodeRepo->getNumberOfTimesCreateCalled()
);
}
}