Remove getId() function call from null models

This commit is contained in:
Dennis Eichhorn 2023-10-16 23:44:00 +00:00
parent 98a6d1a014
commit c7c6f2b8b1

View File

@ -37,7 +37,7 @@ final class NullExchangeSettingTest extends \PHPUnit\Framework\TestCase
public function testId() : void
{
$null = new NullExchangeSetting(2);
self::assertEquals(2, $null->getId());
self::assertEquals(2, $null->id);
}
/**