1 | <?php |
||
15 | abstract class HelperBase |
||
16 | { |
||
17 | /** |
||
18 | * @var array |
||
19 | */ |
||
20 | protected $config = []; |
||
21 | |||
22 | /** |
||
23 | * Constructor |
||
24 | * @param array $config |
||
25 | */ |
||
26 | 27 | public function __construct(array $config = []) |
|
33 | |||
34 | /** |
||
35 | * Checks for all required claims |
||
36 | * |
||
37 | * @param array $claimKeys |
||
38 | * @return boolean |
||
39 | */ |
||
40 | 24 | final protected function checkRequiredClaims($claimKeys) |
|
45 | } |
||
46 |