for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ProxyManager\Factory\RemoteObject\Adapter;
/**
* Remote Object JSON RPC adapter
*/
class JsonRpc extends BaseAdapter
{
* {@inheritDoc}
protected function getServiceName(string $wrappedClass, string $method) : string
return $wrappedClass . '.' . $method;
}