| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class ARBGetSubscriptionStatusRequest extends ARBSubscriptionRequest |
||
| 12 | { |
||
| 13 | protected $subscriptionId; |
||
| 14 | |||
| 15 | public function __construct( |
||
| 16 | Configuration $configuration, |
||
| 17 | Client $client, |
||
| 18 | $subscriptionId |
||
| 19 | ) { |
||
| 20 | parent::__construct($configuration, $client); |
||
| 21 | $this->subscriptionId = $subscriptionId; |
||
| 22 | } |
||
| 23 | |||
| 24 | protected function attachData(RequestInterface $request) |
||
| 27 | } |
||
| 28 | } |
||
| 29 |