mirror of
https://github.com/doctrine/persistence.git
synced 2026-03-23 22:42:11 +01:00
When bfe5057d92 was implemented, this
depth was justified because the "Persistence" directory had a "Common"
directory next to it. The tests trees can be made shallower as well.
21 lines
329 B
PHP
21 lines
329 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\Tests\Persistence;
|
|
|
|
use Doctrine\Persistence\Proxy;
|
|
|
|
/** @implements Proxy<TestObject> */
|
|
class TestObjectProxy extends TestObject implements Proxy
|
|
{
|
|
public function __load(): void
|
|
{
|
|
}
|
|
|
|
public function __isInitialized(): bool
|
|
{
|
|
return true;
|
|
}
|
|
}
|