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 SOAP adapter
*
* @author Vincent Blanchon <[email protected]>
* @license MIT
*/
class Soap extends BaseAdapter
{
* {@inheritDoc}
protected function getServiceName(string $wrappedClass, string $method) : string
return $method;
}