Services   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 13
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1
ccs 3
cts 3
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A ping() 0 4 1
1
<?php
2
3
namespace Rs\VersionEye\Output;
4
5
use Symfony\Component\Console\Output\OutputInterface;
6
7
/**
8
 * Services.
9
 *
10
 * @author Robert Schönthal <[email protected]>
11
 */
12
class Services extends BaseOutput
13
{
14
    /**
15
     * output for the ping api.
16
     *
17
     * @param OutputInterface $output
18
     * @param array           $response
19
     */
20 2
    public function ping(OutputInterface $output, array $response)
21
    {
22 2
        $this->printMessage($output, $response);
23 2
    }
24
}
25