1 | <?php |
||
10 | class JoseHeaderAccessor implements JoseHeaderAccessorInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var array |
||
14 | */ |
||
15 | private $jose; |
||
16 | |||
17 | /** |
||
18 | * @var \Gandung\JWT\ValidatorInterface |
||
19 | */ |
||
20 | private $validator; |
||
21 | |||
22 | public function __construct($header) |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function getAlgorithm(): string |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function getJwkSetUrl(): string |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function getJsonWebKey(): string |
||
66 | |||
67 | /** |
||
68 | * {@inheritdoc} |
||
69 | */ |
||
70 | public function getKeyID(): string |
||
79 | |||
80 | /** |
||
81 | * {@inheritdoc} |
||
82 | */ |
||
83 | public function getX509Url(): string |
||
92 | |||
93 | /** |
||
94 | * {@inheritdoc} |
||
95 | */ |
||
96 | public function getX509CertificateChain(): string |
||
105 | |||
106 | /** |
||
107 | * {@inheritdoc} |
||
108 | */ |
||
109 | public function getType(): string |
||
118 | |||
119 | /** |
||
120 | * {@inheritdoc} |
||
121 | */ |
||
122 | public function getContentType(): string |
||
131 | |||
132 | /** |
||
133 | * {@inheritdoc} |
||
134 | */ |
||
135 | public function get(): array |
||
139 | |||
140 | /** |
||
141 | * Configure validator object. |
||
142 | * |
||
143 | * @param array $constraints |
||
144 | * @return void |
||
145 | */ |
||
146 | private function configureValidator($constraints = []) |
||
154 | } |
||
155 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.