FieldRecord   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
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 16
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getRegistry() 0 2 1
A getPdfLetter() 0 2 1
1
<?php
2
3
namespace ByTIC\DocumentGenerator\Tests\Fixtures\Models\PdfLetters\Fields;
4
5
use ByTIC\DocumentGenerator\PdfLetters\Models\Fields\FieldTrait;
6
use Nip\Records\Record;
7
8
/**
9
 * Class FieldRecord
10
 * @package ByTIC\DocumentGenerator\Tests\Fixtures\Models\PdfLetters\Fields
11
 */
12
class FieldRecord extends Record
13
{
14
    use FieldTrait;
15
16
    /**
17
     * @inheritDoc
18
     */
19
    public function getPdfLetter()
20
    {
21
    }
22
23
    /**
24
     * @inheritDoc
25
     */
26
    public function getRegistry()
27
    {
28
        // TODO: Implement getRegistry() method.
29
    }
30
}
31