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

IsOptimizeCache::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
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