1 | <?php |
||
7 | class GithubAccessResponse |
||
8 | { |
||
9 | use DeserializeTrait; |
||
10 | |||
11 | /** @var string */ |
||
12 | public $access_token; |
||
13 | |||
14 | /** @var string[] */ |
||
15 | public $scope; |
||
16 | |||
17 | /** @var string */ |
||
18 | public $token_type; |
||
19 | |||
20 | /** @var string */ |
||
21 | public $error; |
||
22 | |||
23 | /** @var string */ |
||
24 | public $error_description; |
||
25 | |||
26 | /** @var string */ |
||
27 | public $error_uri; |
||
28 | |||
29 | |||
30 | |||
31 | public function deserializeExtra($arr) |
||
35 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.