reformat code

This commit is contained in:
2025-01-08 15:29:51 +01:00
parent ca7c96766f
commit 5059aea416
5 changed files with 11 additions and 8 deletions

View File

@ -550,7 +550,7 @@ class AccountTest extends TestCase
public function testGetArrayCollectionFromValue($value, ?ArrayCollection $expected, bool $expectException): void
{
if ($expectException) {
$this->expectException( InvalidCredentialTypeException::class );
$this->expectException(InvalidCredentialTypeException::class);
}
$this->assertEquals(
@ -579,7 +579,7 @@ class AccountTest extends TestCase
public function testGetStringOrNullValue($value, ?string $expected, bool $expectException): void
{
if ($expectException) {
$this->expectException( InvalidCredentialTypeException::class );
$this->expectException(InvalidCredentialTypeException::class);
}
$this->assertEquals(
@ -608,7 +608,7 @@ class AccountTest extends TestCase
public function testGetIntOrNullValue($value, ?int $expected, bool $expectException): void
{
if ($expectException) {
$this->expectException( InvalidCredentialTypeException::class );
$this->expectException(InvalidCredentialTypeException::class);
}
$this->assertEquals(
@ -637,7 +637,7 @@ class AccountTest extends TestCase
public function testGetBooleanOrNullValue($value, ?bool $expected, bool $expectException): void
{
if ($expectException) {
$this->expectException( InvalidCredentialTypeException::class );
$this->expectException(InvalidCredentialTypeException::class);
}
$this->assertEquals(