Passed
Pull Request — master (#3)
by
unknown
11:20
created

EntityTable::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 0
dl 0
loc 5
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 3
1
<?php
2
declare(strict_types=1);
3
4
namespace DBD\Entity;
5
6
use Attribute;
7
8
#[Attribute(Attribute::TARGET_CLASS)]
9
final class EntityTable
10
{
11
    public function __construct(
12
        public string $scheme,
13
        public string $name,
14
        public string $annotation
15
    ) {}
16
}
17