testRuleAppliesMultipleTimesToMethodWithMultipleElseExpressions()   A
last analyzed

Complexity

Conditions 4
Paths 8

Size

Total Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 4
nc 8
nop 0
dl 0
loc 12
rs 9.8666
c 0
b 0
f 0
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 Foo
19
{
20
    public function testRuleAppliesMultipleTimesToMethodWithMultipleElseExpressions()
21
    {
22
        if (true) {
23
        } else {
24
        }
25
        if (true) {
26
        } else {
27
        }
28
        if (true) {
29
        } else {
30
        }
31
    }
32
}
33