Completed
Push — master ( 6c9334...f3ba17 )
by Simonas
02:26
created

CommonTermsQuery::toArray()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 12
Code Lines 6

Duplication

Lines 12
Ratio 100 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 12
loc 12
rs 9.4285
cc 1
eloc 6
nc 1
nop 0
1
<?php
2
3
/*
4
 * This file is part of the ONGR package.
5
 *
6
 * (c) NFQ Technologies UAB <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace ONGR\ElasticsearchDSL\Query\FullText;
13
14
use ONGR\ElasticsearchDSL\BuilderInterface;
15
use ONGR\ElasticsearchDSL\ParametersTrait;
16
17
/**
18
 * Represents Elasticsearch "common" query.
19
 *
20
 * @link https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-common-terms-query.html
21
 */
22 View Code Duplication
class CommonTermsQuery implements BuilderInterface
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...
23
{
24
    use ParametersTrait;
25
26
    /**
27
     * @var string
28
     */
29
    private $field;
30
31
    /**
32
     * @var string
33
     */
34
    private $query;
35
36
    /**
37
     * @param string $field
38
     * @param string $query
39
     * @param array  $parameters
40
     */
41
    public function __construct($field, $query, array $parameters = [])
42
    {
43
        $this->field = $field;
44
        $this->query = $query;
45
        $this->setParameters($parameters);
46
    }
47
48
    /**
49
     * {@inheritdoc}
50
     */
51
    public function getType()
52
    {
53
        return 'common';
54
    }
55
56
    /**
57
     * {@inheritdoc}
58
     */
59
    public function toArray()
60
    {
61
        $query = [
62
            'query' => $this->query,
63
        ];
64
65
        $output = [
66
            $this->field => $this->processArray($query),
67
        ];
68
69
        return [$this->getType() => $output];
70
    }
71
}
72