| 1 | <?php |
||
| 14 | class OAuth |
||
| 15 | { |
||
| 16 | public $tokenLifeTime; |
||
| 17 | public $key; |
||
| 18 | public $iss; |
||
| 19 | |||
| 20 | protected $exp; |
||
| 21 | protected $accessToken; |
||
| 22 | /** |
||
| 23 | * OAuth constructor. |
||
| 24 | * @param $key |
||
| 25 | * @param $iss |
||
| 26 | */ |
||
| 27 | public function __construct($key, $iss,$tokenLifeTime = 3600) |
||
| 33 | |||
| 34 | public function getAccessToken(){ |
||
| 69 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.