for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ProxyManagerTestAsset\RemoteProxy;
use ProxyManager\Proxy\RemoteObjectInterface;
/**
* Simple remote object mock implementation
*
* @author Marco Pivetta <[email protected]>
* @license MIT
*/
class RemoteObjectMock implements RemoteObjectInterface
{
* @return static
public static function staticProxyConstructor() : self
return new static();
}