| Total Complexity | 3 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | abstract class AbstractAuthentication implements Authentication |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var Header[]|array |
||
| 16 | */ |
||
| 17 | private $headers; |
||
| 18 | |||
| 19 | public function __construct() |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $headerKey |
||
| 26 | * @param string $headerValue |
||
| 27 | * |
||
| 28 | * @return $this |
||
| 29 | */ |
||
| 30 | protected function addHeader($headerKey, $headerValue) |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return array|Header[] |
||
| 39 | */ |
||
| 40 | public function getHeaders() |
||
| 45 |