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