Completed
Pull Request — master (#67)
by
unknown
01:33
created

GetData::setReportId()   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 1
1
<?php
2
namespace AfriCC\EPP\Extension\NASK\Report;
3
4
use AfriCC\EPP\Extension\NASK\Report;
5
6
class GetData extends Report
7
{
8
    /**
9
     * Set ReportID to retrieve data from.
10
     * 
11
     * @param string $reportId
12
     */
13
    public function setReportId($reportId)
14
    {
15
        $this->set('extreport:getData/extreport:extreportId', $reportId);
16
    }
17
}
18
19