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