mirror of
https://github.com/doctrine/persistence.git
synced 2026-03-23 22:42:11 +01:00
11 lines
125 B
PHP
11 lines
125 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\Tests\Persistence;
|
|
|
|
class OtherTestObject
|
|
{
|
|
protected int $id = 1;
|
|
}
|