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

SkipBind   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 2
c 1
b 0
f 0
dl 0
loc 8
ccs 0
cts 2
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getBind() 0 2 1
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 SkipBind
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 SkipBind
25
{
26
    /**
27
     * Stop operation
28
     * @return false
29
     */
30
    public function getBind() {
31
        return false;
32
    }
33
}
34