| Total Complexity | 4 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | abstract class BaseIgfsCgTokenizer extends BaseIgfsCg |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @throws IgfsMissingParException |
||
| 15 | */ |
||
| 16 | 21 | protected function checkFields() |
|
| 17 | { |
||
| 18 | 21 | parent::checkFields(); |
|
| 19 | 12 | if ($this->shopID == null || $this->shopID == '') { |
|
| 20 | 3 | throw new IgfsMissingParException('Missing shopID'); |
|
| 21 | } |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return string |
||
| 26 | */ |
||
| 27 | 6 | protected function getServicePort() |
|
| 30 | } |
||
| 31 | } |
||
| 32 |