Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
24 | #[Attribute(Attribute::TARGET_CLASS|Attribute::TARGET_METHOD|Attribute::IS_REPEATABLE)] |
||
25 | final class Middleware |
||
26 | { |
||
27 | |||
28 | /** |
||
29 | * The attribute value |
||
30 | * |
||
31 | * @var string |
||
32 | */ |
||
33 | public $value; |
||
34 | |||
35 | /** |
||
36 | * Constructor of the class |
||
37 | * |
||
38 | * @param string $value |
||
39 | */ |
||
40 | 1 | public function __construct(string $value) |
|
45 |