Files
archived-persistence/tests/TestObjectProxy.php
Grégoire Paris b08b3e61af Use an even shallower trees
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.
2025-11-01 16:47:19 +01:00

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;
}
}