View file phpBB3/vendor/ocramius/proxy-manager/src/ProxyManager/Proxy/ValueHolderInterface.php

File size: 329B
<?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();
}