for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PagOnline\Tokenizer;
use PagOnline\BaseIgfsCg;
use PagOnline\Exceptions\IgfsMissingParException;
/**
* Class BaseIgfsCgTokenizer.
*/
abstract class BaseIgfsCgTokenizer extends BaseIgfsCg
{
* @throws IgfsMissingParException
protected function checkFields()
parent::checkFields();
if ($this->shopID == null || $this->shopID == '') {
throw new IgfsMissingParException('Missing shopID');
}
* @return string
protected function getServicePort()
return 'TokenizerGatewayPort';