| Total Complexity | 3 | 
| Total Lines | 22 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 5 | class Status { | ||
| 6 | use \Nickcheek\Atdconnect\Traits\ApiTrait; | ||
|  | |||
| 7 | |||
| 8 | private $wsdl; | ||
| 9 | |||
| 10 | public function __construct() | ||
| 11 | 	{ | ||
| 12 | $this->wsdl = 'https://testws.atdconnect.com/ws/3_4/orderStatus.wsdl'; | ||
| 13 | } | ||
| 14 | |||
| 15 | //************************************************ | ||
| 16 | // Order Status Service | ||
| 17 | //************************************************ | ||
| 18 | |||
| 19 | public function getOrderDetail($status) | ||
| 22 | } | ||
| 23 | |||
| 24 | public function getOrderStatusByCriteria($criteria) | ||
| 27 | } | ||
| 28 | |||
| 30 | } |