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