NumberFilter   A
last analyzed

Complexity

Total Complexity 12

Size/Duplication

Total Lines 62
Duplicated Lines 0 %

Coupling/Cohesion

Components 2
Dependencies 1

Importance

Changes 0
Metric Value
wmc 12
lcom 2
cbo 1
dl 0
loc 62
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
B filter() 0 36 10
A getDefaultOptions() 0 4 1
A getRenderSettings() 0 8 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the Sonata Project package.
7
 *
8
 * (c) Thomas Rabaix <[email protected]>
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace Sonata\DoctrinePHPCRAdminBundle\Filter;
15
16
use Sonata\AdminBundle\Datagrid\ProxyQueryInterface;
17
use Sonata\AdminBundle\Form\Type\Filter\NumberType;
18
19
class NumberFilter extends Filter
20
{
21
    /**
22
     * {@inheritdoc}
23
     */
24
    public function filter(ProxyQueryInterface $proxyQuery, $alias, $field, $data): void
25
    {
26
        if (!$data || !\is_array($data) || !\array_key_exists('value', $data) || !is_numeric($data['value'])) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $data of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
27
            return;
28
        }
29
30
        $type = $data['type'] ?? false;
31
        $where = $this->getWhere($proxyQuery);
0 ignored issues
show
Compatibility introduced by
$proxyQuery of type object<Sonata\AdminBundl...id\ProxyQueryInterface> is not a sub-type of object<Sonata\DoctrinePH...le\Datagrid\ProxyQuery>. It seems like you assume a concrete implementation of the interface Sonata\AdminBundle\Datagrid\ProxyQueryInterface to be always present.

This check looks for parameters that are defined as one type in their type hint or doc comment but seem to be used as a narrower type, i.e an implementation of an interface or a subclass.

Consider changing the type of the parameter or doing an instanceof check before assuming your parameter is of the expected type.

Loading history...
32
33
        $value = $data['value'];
34
35
        switch ($type) {
36
            case NumberType::TYPE_GREATER_EQUAL:
0 ignored issues
show
Deprecated Code introduced by
The constant Sonata\AdminBundle\Form\...ype::TYPE_GREATER_EQUAL has been deprecated with message: since sonata-project/admin-bundle 3.57, to be removed with 4.0: Use NumberOperatorType::TYPE_GREATER_EQUAL instead

This class constant has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the constant will be removed from the class and what other constant to use instead.

Loading history...
37
                $where->gte()->field('a.'.$field)->literal($value);
38
39
                break;
40
            case NumberType::TYPE_GREATER_THAN:
0 ignored issues
show
Deprecated Code introduced by
The constant Sonata\AdminBundle\Form\...Type::TYPE_GREATER_THAN has been deprecated with message: since sonata-project/admin-bundle 3.57, to be removed with 4.0: Use NumberOperatorType::TYPE_GREATER_THAN instead

This class constant has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the constant will be removed from the class and what other constant to use instead.

Loading history...
41
                $where->gt()->field('a.'.$field)->literal($value);
42
43
                break;
44
            case NumberType::TYPE_LESS_EQUAL:
0 ignored issues
show
Deprecated Code introduced by
The constant Sonata\AdminBundle\Form\...erType::TYPE_LESS_EQUAL has been deprecated with message: since sonata-project/admin-bundle 3.57, to be removed with 4.0: Use NumberOperatorType::TYPE_LESS_EQUAL instead

This class constant has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the constant will be removed from the class and what other constant to use instead.

Loading history...
45
                $where->lte()->field('a.'.$field)->literal($value);
46
47
                break;
48
            case NumberType::TYPE_LESS_THAN:
0 ignored issues
show
Deprecated Code introduced by
The constant Sonata\AdminBundle\Form\...berType::TYPE_LESS_THAN has been deprecated with message: since sonata-project/admin-bundle 3.57, to be removed with 4.0: Use NumberOperatorType::TYPE_LESS_THAN instead

This class constant has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the constant will be removed from the class and what other constant to use instead.

Loading history...
49
                $where->lt()->field('a.'.$field)->literal($value);
50
51
                break;
52
            case NumberType::TYPE_EQUAL:
0 ignored issues
show
Deprecated Code introduced by
The constant Sonata\AdminBundle\Form\...\NumberType::TYPE_EQUAL has been deprecated with message: since sonata-project/admin-bundle 3.57, to be removed with 4.0: Use NumberOperatorType::TYPE_EQUAL instead

This class constant has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the constant will be removed from the class and what other constant to use instead.

Loading history...
53
            default:
54
                $where->eq()->field('a.'.$field)->literal($value);
55
        }
56
57
        // filter is active as we have now modified the query
58
        $this->active = true;
59
    }
60
61
    /**
62
     * {@inheritdoc}
63
     */
64
    public function getDefaultOptions()
65
    {
66
        return [];
67
    }
68
69
    /**
70
     * {@inheritdoc}
71
     */
72
    public function getRenderSettings()
73
    {
74
        return ['sonata_type_filter_number', [
75
            'field_type' => $this->getFieldType(),
76
            'field_options' => $this->getFieldOptions(),
77
            'label' => $this->getLabel(),
78
        ]];
79
    }
80
}
81