Record   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getRegistry() 0 2 1
A saveRecord() 0 2 1
1
<?php
2
3
namespace ByTIC\Models\SmartProperties\Tests\Fixtures\RecordsTraits\HasSmartProperties;
4
5
use ByTIC\Models\SmartProperties\RecordsTraits\HasSmartProperties\RecordTrait;
6
use Nip\Records\Record as AbstractRecord;
7
8
/**
9
 * Class Record
10
 * @package ByTIC\Common\Tests\Fixtures\Unit\Recrods\Traits\HasSmartProperties
11
 *
12
 * @property string $status
13
 * @property string $registration_status
14
 */
15
class Record extends AbstractRecord
16
{
17
    use RecordTrait;
18
19
    public function getRegistry()
20
    {
21
    }
22
23
    public function saveRecord()
24
    {
25
    }
26
}
27