Domain::resendConfirmationRequest()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace AfriCC\EPP\Extension\NASK\Transfer;
4
5
use AfriCC\EPP\ExtensionInterface as Extension;
6
use AfriCC\EPP\Frame\Command\Transfer\Domain as DomainTransfer;
7
8
class Domain extends DomainTransfer implements Extension
9
{
10
    protected $extension = 'extdom';
11
    protected $extension_xmlns = 'http://www.dns.pl/nask-epp-schema/extdom-2.0';
12
13
    /**
14
     * Add resend confirmation request
15
     *
16
     * This element can only be applied on request frame with no period specified
17
     */
18
    public function resendConfirmationRequest()
19
    {
20
        $this->set('//epp:epp/epp:command/epp:extension/extdom:transfer/extdom:resendConfirmationRequest');
21
    }
22
}
23