Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
22 | class AccessControlAllowCredentialsHeader extends Header |
||
23 | { |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | 3 | public function getFieldName(): string |
|
29 | { |
||
30 | 3 | return 'Access-Control-Allow-Credentials'; |
|
31 | } |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | 3 | public function getFieldValue(): string |
|
39 | } |
||
40 | } |
||
41 |