Remove getId() function call from null models

This commit is contained in:
Dennis Eichhorn 2023-10-16 23:44:00 +00:00
parent 1b21b4007c
commit 3e927aff4e

View File

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