| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function setInfContacts($op = null) |
||
| 29 | { |
||
| 30 | if (!is_null($op)) { |
||
| 31 | if (!in_array($op, ['all', 'registrant', 'admin', 'tech'])) { |
||
| 32 | throw new Exception(sprintf('%s is not a known contact type value', $op)); |
||
| 33 | } |
||
| 34 | |||
| 35 | $this->set(sprintf('//epp:epp/epp:command/epp:extension/extdom:infContacts[@op=\'%s\']', $op)); |
||
| 36 | } |
||
| 37 | } |
||
| 38 | } |
||
| 39 |