for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PagOnline\Mpi;
use PagOnline\BaseIgfsCg;
use PagOnline\IgfsUtils;
abstract class BaseIgfsCgMpi extends BaseIgfsCg
{
/**
* @var mixed
*/
public $xid;
public function resetFields()
parent::resetFields();
$this->xid = null;
}
* @return string
protected function getServicePort()
return 'MPIGatewayPort';
* @param array $response
protected function parseResponseMap($response)
parent::parseResponseMap($response);
// Opzionale
$this->xid = IgfsUtils::getValue($response, 'xid');