Conditions | 3 |
Paths | 3 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
45 | public function __construct($appId, string $appKey, string $appSecret) |
||
46 | { |
||
47 | if ($appKey === '') { |
||
48 | throw InvalidApp::valueIsRequired('appKey', $appId); |
||
49 | } |
||
50 | |||
51 | if ($appSecret === '') { |
||
52 | throw InvalidApp::valueIsRequired('appSecret', $appId); |
||
53 | } |
||
54 | |||
55 | $this->id = $appId; |
||
56 | |||
57 | $this->key = $appKey; |
||
58 | |||
59 | $this->secret = $appSecret; |
||
60 | } |
||
61 | |||
90 |