Remove getId() function call from null models

This commit is contained in:
Dennis Eichhorn 2023-10-16 23:44:00 +00:00
parent b3d76e2acb
commit 2afad600d3

View File

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