Test Failed
Push — master ( 50ebf9...195aca )
by Gabriel
12:00 queued 12s
created

FieldRecord   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 2
dl 0
loc 19
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getPdfLetter() 0 3 1
A getRegistry() 0 4 1
1
<?php
2
3
namespace ByTIC\DocumentGenerator\Tests\Fixtures\Models\PdfLetters\Fields;
4
5
use ByTIC\DocumentGenerator\PdfLetters\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