diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Proxy/InternalProxy.php')
| -rw-r--r-- | vendor/doctrine/orm/src/Proxy/InternalProxy.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Proxy/InternalProxy.php b/vendor/doctrine/orm/src/Proxy/InternalProxy.php new file mode 100644 index 0000000..7c1d833 --- /dev/null +++ b/vendor/doctrine/orm/src/Proxy/InternalProxy.php | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | <?php | ||
| 2 | |||
| 3 | declare(strict_types=1); | ||
| 4 | |||
| 5 | namespace Doctrine\ORM\Proxy; | ||
| 6 | |||
| 7 | use Doctrine\Persistence\Proxy; | ||
| 8 | |||
| 9 | /** | ||
| 10 | * @internal | ||
| 11 | * | ||
| 12 | * @template T of object | ||
| 13 | * @template-extends Proxy<T> | ||
| 14 | */ | ||
| 15 | interface InternalProxy extends Proxy | ||
| 16 | { | ||
| 17 | public function __setInitialized(bool $initialized): void; | ||
| 18 | } | ||
