Passed
Push — v6 ( fe03e1...0ec70f )
by 光春
04:11
created

PddWmsDepotTicketProblemGetRequest   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
c 1
b 0
f 0
dl 0
loc 24
rs 10
wmc 5

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getVersion() 0 3 1
A __construct() 0 2 1
A getDataType() 0 3 1
A setUserParams() 0 2 1
A getType() 0 3 1
1
<?php
2
namespace Com\Pdd\Pop\Sdk\Api\Request;
3
4
use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
5
use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
6
7
class PddWmsDepotTicketProblemGetRequest extends PopBaseHttpRequest
8
{
9
    public function __construct()
10
	{
11
12
	}
13
	protected function setUserParams(&$params)
14
	{
15
16
	}
17
18
	public function getVersion()
19
	{
20
		return "V1";
21
	}
22
23
	public function getDataType()
24
	{
25
		return "JSON";
26
	}
27
28
	public function getType()
29
	{
30
		return "pdd.wms.depot.ticket.problem.get";
31
	}
32
33
}
34