Completed
Push — develop ( 63ab30...d8c8ca )
by Jaap
38:43 queued 28:43
created

A   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 15
rs 10
wmc 2
lcom 0
cbo 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A someMethodWithDocblock() 0 3 1
A someMethodWithoutDocblock() 0 3 1
1
<?php
2
namespace phpDocumentor;
3
4
use phpDocumentor\{ClassA, ClassB, ClassC as C};
5
6
class A {
7
8
    /**
9
     * @param \phpDocumentor\ClassA $a
10
     * @param \phpDocumentor\ClassB $b
11
     * @param ClassC $c
12
     */
13
    public function someMethodWithDocblock(ClassA $a, ClassB $b, C $c) {
0 ignored issues
show
Unused Code introduced by
The parameter $a is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $b is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $c is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
14
15
    }
16
17
    public function someMethodWithoutDocblock(ClassA $a, ClassB $b, C $c) {
0 ignored issues
show
Unused Code introduced by
The parameter $a is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $b is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
Unused Code introduced by
The parameter $c is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
18
19
    }
20
}
21