Passed
Pull Request — master (#1045)
by Aleksei
10:03
created

Proxy::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 0
c 0
b 0
f 0
dl 0
loc 3
ccs 1
cts 1
cp 1
rs 10
cc 1
nc 1
nop 1
crap 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Spiral\Core\Attribute;
6
7
/**
8
 * Scoped proxy
9
 *
10
 * @internal We are testing this feature, it may be changed in the future.
11
 */
12
#[\Attribute(\Attribute::TARGET_PARAMETER)]
13
final class Proxy implements Plugin
14
{
15
    /**
16
     * @param bool $magicCall Generate `__call` and `__callStatic` methods in proxy.
17
     */
18 15
    public function __construct(
19
        public bool $magicCall = false,
20
    ) {
21 15
    }
22
}
23