Passed
Push — php82 ( f26871 )
by Akihito
02:19
created

Assisted::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Ray\Di\Di;
6
7
use Attribute;
8
9
/**
10
 * Marks a parameter for assisted injection
11
 *
12
 * When applied to a method parameter, this indicates that the parameter
13
 * should be automatically injected by the DI container during method invocation.
14
 */
15
#[Attribute(Attribute::TARGET_PARAMETER)]
16
final class Assisted
17
{
18
}
19