RecordTrait
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 5
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php
2
3
namespace ByTIC\Models\SmartProperties\RecordsTraits\HasStatus;
4
5
use ByTIC\Models\SmartProperties\Properties\AbstractProperty\Generic;
6
use ByTIC\Models\SmartProperties\RecordsTraits\HasSmartProperties\RecordTrait as HasSmartPropertiesRecord;
7
use Nip\Records\RecordManager;
8
9
/**
10
 * Class RecordTrait
11
 * @package ByTIC\Models\SmartProperties\RecordsTraits\HasStatus
12
 *
13
 * @property string $status
14
 * @method RecordManager|RecordsTrait getManager()
15
 *
16
 */
17
trait RecordTrait
18
{
19
    use \ByTIC\Models\SmartProperties\RecordsTraits\AbstractTrait\RecordTrait;
20
    use HasSmartPropertiesRecord;
21
    use PropertyRecordTrait;
22
}
23