| Total Complexity | 3 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Setting { |
||
| 12 | |||
| 13 | private $smsir; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param Smsir $smsir |
||
| 17 | */ |
||
| 18 | public function __construct(Smsir $smsir) { |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * get account credit |
||
| 24 | * |
||
| 25 | * @return CreditResponse |
||
| 26 | * @throws GuzzleException |
||
| 27 | * @throws HttpException |
||
| 28 | * @throws JsonException |
||
| 29 | */ |
||
| 30 | public function getCredit(): CreditResponse { |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * get account line numbers |
||
| 37 | * |
||
| 38 | * @return LineResponse |
||
| 39 | * @throws HttpException |
||
| 40 | * @throws GuzzleException |
||
| 41 | * @throws JsonException |
||
| 42 | */ |
||
| 43 | public function getLines(): LineResponse { |
||
| 49 |