OrderedNormalizerInterface
last analyzed

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 9
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
getOrder() 0 1 ?
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\Serializer\Normalizer;
13
14
/**
15
 * This should be implemented by normalizable object that required to be processed in specific order.
16
 */
17
interface OrderedNormalizerInterface
18
{
19
    /**
20
     * Returns normalization priority.
21
     *
22
     * @return int
23
     */
24
    public function getOrder();
25
}
26