Test Failed
Push — master ( 4abc3b...a9eb80 )
by Julien
04:29
created

SkipDistinct::getDistinct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 2
ccs 0
cts 2
cp 0
rs 10
cc 1
nc 1
nop 0
crap 2
1
<?php
2
/**
3
 * This file is part of the Zemit Framework.
4
 *
5
 * (c) Zemit Team <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE.txt
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Zemit\Mvc\Controller\Behavior\Skip;
12
13
/**
14
 * Class SkipDistinct
15
 *
16
 * @author Julien Turbide <[email protected]>
17
 * @copyright Zemit Team <[email protected]>
18
 *
19
 * @since 1.0
20
 * @version 1.0
21
 *
22
 * @package Zemit\Mvc\Controller\Behavior\Skip
23
 */
24
class SkipDistinct
25
{
26
    /**
27
     * Stop operation
28
     * @return false
29
     */
30
    public function getDistinct() {
31
        return false;
32
    }
33
}
34