Completed
Push — master ( ae5e03...0447ee )
by Jeroen
10:35 queued 04:37
created

NumberFilterType   A

Complexity

Total Complexity 12

Size/Duplication

Total Lines 66
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 5

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 12
lcom 1
cbo 5
dl 66
loc 66
ccs 35
cts 35
cp 1
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A bindRequest() 5 5 1
B apply() 40 40 10
A getTemplate() 4 4 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
namespace Kunstmaan\AdminListBundle\AdminList\FilterType\DBAL;
4
5
use Symfony\Component\HttpFoundation\Request;
6
7
/**
8
 * NumberFilterType
9
 */
10 View Code Duplication
class NumberFilterType extends AbstractDBALFilterType
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
11
{
12
    /**
13
     * @param Request $request  The request
14
     * @param array   &$data    The data
15
     * @param string  $uniqueId The unique identifier
16
     */
17 1
    public function bindRequest(Request $request, array &$data, $uniqueId)
18
    {
19 1
        $data['comparator'] = $request->query->get('filter_comparator_' . $uniqueId);
20 1
        $data['value'] = $request->query->get('filter_value_' . $uniqueId);
21 1
    }
22
23
    /**
24
     * @param array  $data     The data
25
     * @param string $uniqueId The unique identifier
26
     */
27 8
    public function apply(array $data, $uniqueId)
28
    {
29 8
        if (isset($data['value'], $data['comparator'])) {
30 8
            switch ($data['comparator']) {
31 8
                case 'eq':
32 1
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->eq($this->getAlias() . $this->columnName, ':var_' . $uniqueId));
33
34 1
                    break;
35 7
                case 'neq':
36 1
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->neq($this->getAlias() . $this->columnName, ':var_' . $uniqueId));
37
38 1
                    break;
39 6
                case 'lt':
40 1
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->lt($this->getAlias() . $this->columnName, ':var_' . $uniqueId));
41
42 1
                    break;
43 5
                case 'lte':
44 1
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->lte($this->getAlias() . $this->columnName, ':var_' . $uniqueId));
45
46 1
                    break;
47 4
                case 'gt':
48 1
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->gt($this->getAlias() . $this->columnName, ':var_' . $uniqueId));
49
50 1
                    break;
51 3
                case 'gte':
52 1
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->gte($this->getAlias() . $this->columnName, ':var_' . $uniqueId));
53
54 1
                    break;
55 2
                case 'isnull':
56 1
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->isNull($this->getAlias() . $this->columnName));
57
58 1
                    return;
59 1
                case 'isnotnull':
60 1
                    $this->queryBuilder->andWhere($this->queryBuilder->expr()->isNotNull($this->getAlias() . $this->columnName));
61
62 1
                    return;
63
            }
64 6
            $this->queryBuilder->setParameter('var_' . $uniqueId, $data['value']);
65
        }
66 6
    }
67
68
    /**
69
     * @return string
70
     */
71 1
    public function getTemplate()
72
    {
73 1
        return '@KunstmaanAdminList/FilterType/numberFilter.html.twig';
74
    }
75
}
76