| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function __construct( |
||
| 16 | string $token, |
||
| 17 | ?string $masterToken, |
||
| 18 | ?string $clientLogin, |
||
| 19 | ?bool $useOperatorUnits, |
||
| 20 | string $language, |
||
| 21 | string $baseUrl |
||
| 22 | ) { |
||
| 23 | $this->token = $token; |
||
| 24 | $this->masterToken = $masterToken; |
||
| 25 | $this->login = $clientLogin; |
||
| 26 | $this->useOperatorUnits = $useOperatorUnits; |
||
| 27 | $this->language = $language; |
||
| 28 | $this->baseUrl = $baseUrl; |
||
| 29 | } |
||
| 30 | |||
| 102 |