Passed
Pull Request — master (#941)
by Aleksei
13:25 queued 04:54
created

Alias   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 2
c 1
b 0
f 0
dl 0
loc 11
ccs 4
cts 4
cp 1
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A __toString() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Spiral\Core\Config;
6
7
/**
8
 * Links to another binding.
9
 */
10
final class Alias extends Binding
11
{
12 1017
    public function __construct(
13
        public readonly string $alias,
14
        public readonly bool $singleton = false,
15
    ) {
16 1017
    }
17
18 365
    public function __toString(): string
19
    {
20 365
        return sprintf('Alias to `%s`', $this->alias);
21
    }
22
}
23