Completed
Pull Request — master (#84)
by
unknown
01:46
created

Domain::getExtensionNamespace()   A

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\ExtensionTrait;
7
use AfriCC\EPP\Frame\Command\Transfer\Domain as DomainTransfer;
8
9
class Domain extends DomainTransfer implements Extension
10
{
11
    use ExtensionTrait;
12
13
    protected $extension = 'extdom';
14
    protected $extension_xmlns = 'http://www.dns.pl/nask-epp-schema/extdom-2.0';
15
16
    /**
17
     * Add resend confirmation request
18
     *
19
     * This element can only be applied on request frame with no period specified
20
     */
21
    public function resendConfirmationRequest()
22
    {
23
        $this->set('//epp:epp/epp:command/epp:extension/extdom:transfer/extdom:resendConfirmationRequest');
24
    }
25
}
26