testIsDeclarationReturnsTrueForMethodDeclarationWithParentClass   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testIsDeclarationReturnsTrueForMethodDeclarationWithParent() 0 4 1
1
<?php
2
/**
3
 * This file is part of PHP Mess Detector.
4
 *
5
 * Copyright (c) Manuel Pichler <[email protected]>.
6
 * All rights reserved.
7
 *
8
 * Licensed under BSD License
9
 * For full copyright and license information, please see the LICENSE file.
10
 * Redistributions of files must retain the above copyright notice.
11
 *
12
 * @author Manuel Pichler <[email protected]>
13
 * @copyright Manuel Pichler. All rights reserved.
14
 * @license https://opensource.org/licenses/bsd-license.php BSD License
15
 * @link http://phpmd.org/
16
 */
17
18
class testIsDeclarationReturnsTrueForMethodDeclarationWithParentClass
19
    extends testIsDeclarationReturnsTrueForMethodDeclarationWithParentParentClass
20
{
21
    public function testIsDeclarationReturnsTrueForMethodDeclarationWithParent($foo)
0 ignored issues
show
Unused Code introduced by
The parameter $foo 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...
22
    {
23
24
    }
25
}
26
27
class testIsDeclarationReturnsTrueForMethodDeclarationWithParentParentClass
28
{
29
    public function testIsDeclarationReturnsTrueForMethodDeclaration($foo)
0 ignored issues
show
Unused Code introduced by
The parameter $foo 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...
30
    {
31
32
    }
33
}
34