Test Failed
Push — master ( e7f4de...899bec )
by Vladimir
04:39
created

Check   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 11
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A check() 0 3 1
1
<?php
2
/**
3
 * This file is part of the `tvi/monitor-bundle` project.
4
 *
5
 * (c) https://github.com/turnaev/monitor-bundle/graphs/contributors
6
 *
7
 * For the full copyright and license information, please view the LICENSE.md
8
 * file that was distributed with this source code.
9
 */
0 ignored issues
show
Coding Style introduced by
PHP version not specified
Loading history...
Coding Style introduced by
Missing @category tag in file comment
Loading history...
Coding Style introduced by
Missing @package tag in file comment
Loading history...
Coding Style introduced by
Missing @author tag in file comment
Loading history...
Coding Style introduced by
Missing @license tag in file comment
Loading history...
Coding Style introduced by
Missing @link tag in file comment
Loading history...
10
11
namespace Tvi\MonitorBundle\Check\YamlFile;
12
13
use ZendDiagnostics\Result\Success;
14
use ZendDiagnostics\Result\SuccessInterface;
15
use ZendDiagnostics\Result\WarningInterface;
16
use ZendDiagnostics\Result\SkipInterface;
17
use ZendDiagnostics\Result\FailureInterface;
18
19
use Tvi\MonitorBundle\Check\CheckInterface;
20
use Tvi\MonitorBundle\Check\CheckTrait;
21
22
/**
0 ignored issues
show
Coding Style introduced by
Missing short description in doc comment
Loading history...
23
 * @author Vladimir Turnaev <[email protected]>
24
 */
0 ignored issues
show
Coding Style introduced by
Missing @category tag in class comment
Loading history...
Coding Style introduced by
Missing @package tag in class comment
Loading history...
Coding Style introduced by
Missing @license tag in class comment
Loading history...
Coding Style introduced by
Missing @link tag in class comment
Loading history...
25
class Check extends \ZendDiagnostics\Check\AbstractCheck implements CheckInterface
26
{
27
    use CheckTrait;
28
29
    /**
0 ignored issues
show
Coding Style introduced by
Missing short description in doc comment
Loading history...
30
     * @see \ZendDiagnostics\Check\CheckInterface::check()
0 ignored issues
show
Coding Style introduced by
Tag value indented incorrectly; expected 4 spaces but found 1
Loading history...
31
     * @return SuccessInterface|WarningInterface|SkipInterface|FailureInterface
32
     */
33
    public function check()
34
    {
35
        throw new \Tvi\MonitorBundle\Exception\NotImplemented();
36
        //return new Success();
37
    }
38
}
39