SwitchStatement   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 2
c 1
b 0
f 1
lcom 0
cbo 2
dl 0
loc 14
ccs 6
cts 6
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A apply() 0 8 2
1
<?php
2
3
namespace MS\PHPMD\Rule\CleanCode;
4
5
use PHPMD\AbstractNode;
6
use PHPMD\AbstractRule;
7
use PHPMD\Node\MethodNode;
8
use PHPMD\Rule\MethodAware;
9
10
/**
11
 * Class SwitchStatement
12
 *
13
 * Try to avoid using switch-case statements. Use polymorphism instead.
14
 *
15
 * @package MS\PHPMD\Rule\CleanCode
16
 */
17
class SwitchStatement extends AbstractRule implements MethodAware
18
{
19
    /**
20
     * @param AbstractNode|MethodNode $node
21
     */
22 2
    public function apply(AbstractNode $node)
23
    {
24 2
        $switchStatements = $node->findChildrenOfType('SwitchStatement');
25
26 2
        foreach ($switchStatements as $switchStatement) {
27 1
            $this->addViolation($switchStatement);
28 2
        }
29 2
    }
30
}
31