| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 1 | public function __construct( |
|
| 19 | Configuration $configuration, |
||
| 20 | Client $client, |
||
| 21 | $subscriptionId, |
||
| 22 | $includeTransactions = false |
||
| 23 | ) { |
||
| 24 | 1 | parent::__construct($configuration, $client); |
|
| 25 | 1 | $this->subscriptionId = $subscriptionId; |
|
| 26 | 1 | $this->includeTransactions = filter_var($includeTransactions, FILTER_VALIDATE_BOOLEAN) ? 'true' : 'false'; |
|
| 27 | 1 | } |
|
| 28 | |||
| 35 |