AbstractConverter   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace Jackal\Copycat\Converter\ValueConverter;
4
5
/**
6
 * Class AbstractConverter
7
 * @package Jackal\Copycat\Converter\ValueConverter
8
 */
9
abstract class AbstractConverter implements ConverterInterface
10
{
11
    /**
12
     * @var string
13
     */
14
    protected $fieldName;
15
16
    /**
17
     * AbstractConverter constructor.
18
     * @param $fieldName
19
     */
20
    public function __construct($fieldName)
21
    {
22
        $this->fieldName = $fieldName;
23
    }
24
}
25