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

Record   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

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

2 Methods

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