SortEndpoint   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 2
c 0
b 0
f 0
lcom 0
cbo 2
dl 0
loc 21
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A normalize() 0 10 2
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\SearchEndpoint;
13
14
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
15
16
/**
17
 * Search sort dsl endpoint.
18
 */
19
class SortEndpoint extends AbstractSearchEndpoint
20
{
21
    /**
22
     * Endpoint name
23
     */
24
    const NAME = 'sort';
25
26
    /**
27
     * {@inheritdoc}
28
     */
29
    public function normalize(NormalizerInterface $normalizer, $format = null, array $context = [])
30
    {
31
        $output = [];
32
33
        foreach ($this->getAll() as $sort) {
34
            $output[] = $sort->toArray();
35
        }
36
37
        return $output;
38
    }
39
}
40