RecordsTrait   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A registerSmartProperties() 0 3 1
1
<?php
2
3
namespace ByTIC\Models\SmartProperties\RecordsTraits\HasTypes;
4
5
/**
6
 * Class RecordsTrait
7
 *
8
 * @package ByTIC\Models\SmartProperties\RecordsTraits\HasTypes
9
 */
10
trait RecordsTrait
11
{
12
    use \ByTIC\Models\SmartProperties\RecordsTraits\AbstractTrait\RecordsTrait;
13
    use \ByTIC\Models\SmartProperties\RecordsTraits\HasSmartProperties\RecordsTrait;
14
    use PropertyRecordsTrait;
15
16
    protected function registerSmartProperties()
17
    {
18
        $this->registerSmartPropertyType();
19
    }
20
}
21