| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function __construct( |
||
| 17 | Configuration $configuration, |
||
| 18 | Client $client, |
||
| 19 | $subscriptionId, |
||
| 20 | $includeTransactions = false |
||
| 21 | ) { |
||
| 22 | parent::__construct($configuration, $client); |
||
| 23 | $this->subscriptionId = $subscriptionId; |
||
| 24 | $this->includeTransactions = filter_var($includeTransactions, FILTER_VALIDATE_BOOLEAN) ? 'true' : 'false'; |
||
| 25 | } |
||
| 33 |