Passed
Push — master ( ee6b03...f5a05a )
by Aleksandar
02:24
created

Column   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace ArekX\PQL\Orm\Attributes;
4
5
use Attribute;
6
7
#[Attribute(Attribute::TARGET_PROPERTY | Attribute::TARGET_METHOD)]
8
class Column
9
{
10
    public function __construct(
11
        public ?string $columnName = null
12
    )
13
    {
14
    }
15
}