Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
47 | 2 | public function __construct($apiVersion, $appId, $appSecret, $appPermissions, $redirectUrl) |
|
48 | { |
||
49 | 2 | $this->apiVersion = $apiVersion; |
|
50 | 2 | $this->appId = $appId; |
|
51 | 2 | $this->appSecret = $appSecret; |
|
52 | 2 | $this->appPermissions = $appPermissions; |
|
53 | 2 | $this->redirectUrl = $redirectUrl; |
|
54 | 2 | } |
|
96 |