Passed
Push — master ( 0e85a7...3ec6ca )
by Gabriel
02:46
created

RecordTrait::updateStatus()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
eloc 1
c 0
b 0
f 0
dl 0
loc 4
rs 10
ccs 0
cts 2
cp 0
cc 1
nc 1
nop 1
crap 2
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