AbstractFilter   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 2
Bugs 1 Features 1
Metric Value
wmc 1
eloc 3
c 2
b 1
f 1
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\Filter\ValueFilter;
4
5
/**
6
 * Class AbstractFilter
7
 * @package Jackal\Copycat\Filter\ValueFilter
8
 */
9
abstract class AbstractFilter implements FilterInterface
10
{
11
    /**
12
     * @var string
13
     */
14
    protected $fieldName;
15
16
    /**
17
     * AbstractFilter constructor.
18
     * @param $fieldName
19
     */
20
    public function __construct($fieldName)
21
    {
22
        $this->fieldName = $fieldName;
23
    }
24
}
25