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

A::someMethodWithDocblock()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 3
dl 0
loc 3
rs 10
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