Passed
Push — donut_body_cache ( 410a05 )
by Akihito
11:57
created

IsOptimizeCache   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
c 1
b 0
f 0
dl 0
loc 9
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace BEAR\QueryRepository\Annotation;
6
7
use Attribute;
8
use Ray\Di\Di\Qualifier;
9
10
/**
11
 * @Annotation
12
 * @Target("METHOD")
13
 * @Qualifier
14
 * @NamedArgumentConstructor
15
 */
16
#[Attribute(Attribute::TARGET_METHOD | Attribute::TARGET_PARAMETER), Qualifier]
17
final class IsOptimizeCache
18
{
19
    /** @var string */
20
    public $value;
21
22
    public function __construct(string $value)
23
    {
24
        $this->value = $value;
25
    }
26
}
27