0x1949 Team - FAZEMRX - MANAGER
Edit File: ValueHolderInterface.php
<?php declare(strict_types=1); namespace ProxyManager\Proxy; /** * Value holder marker * * @author Marco Pivetta <ocramius@gmail.com> * @license MIT */ interface ValueHolderInterface extends ProxyInterface { /** * @return object|null the wrapped value */ public function getWrappedValueHolderValue(); }