Conditions | 3 |
Paths | 3 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
51 | public function __construct($appId, string $appKey, string $appSecret) |
||
52 | { |
||
53 | if ($appKey === '') { |
||
54 | throw InvalidApp::valueIsRequired('appKey', $appId); |
||
55 | } |
||
56 | |||
57 | if ($appSecret === '') { |
||
58 | throw InvalidApp::valueIsRequired('appSecret', $appId); |
||
59 | } |
||
60 | |||
61 | $this->id = $appId; |
||
62 | |||
63 | $this->key = $appKey; |
||
64 | |||
65 | $this->secret = $appSecret; |
||
66 | } |
||
67 | |||
110 |