Users   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A show() 0 8 1
1
<?php
2
3
namespace Rs\VersionEye\Output;
4
5
use Symfony\Component\Console\Output\OutputInterface;
6
7
/**
8
 * Users.
9
 *
10
 * @author Robert Schönthal <[email protected]>
11
 */
12
class Users extends Me
13
{
14
    /**
15
     * output for the profile API.
16
     *
17
     * @param OutputInterface $output
18
     * @param array           $response
19
     */
20 1
    public function show(OutputInterface $output, array $response)
21
    {
22 1
        $this->printList($output,
23 1
            ['Fullname', 'Username'],
24 1
            ['fullname', 'username'],
25 1
            $response
26
        );
27 1
    }
28
}
29