Completed
Push — master ( 19c440...922200 )
by Дмитрий
06:07 queued 02:02
created

NotEqual::compile()   C

Complexity

Conditions 11
Paths 31

Size

Total Lines 24
Code Lines 18

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 20
CRAP Score 11

Importance

Changes 0
Metric Value
cc 11
eloc 18
nc 31
nop 2
dl 0
loc 24
ccs 20
cts 20
cp 1
crap 11
rs 5.3305
c 0
b 0
f 0

How to fix   Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
/**
3
 * PHP Smart Analysis project 2015-2016
4
 *
5
 * @author Patsura Dmitry https://github.com/ovr <[email protected]>
6
 */
7
8
namespace PHPSA\Compiler\Expression\BinaryOp;
9
10
use PHPSA\CompiledExpression;
11
use PHPSA\Context;
12
use PHPSA\Compiler\Expression;
13
use PHPSA\Compiler\Expression\AbstractExpressionCompiler;
14
15
class NotEqual extends AbstractExpressionCompiler
16
{
17
    protected $name = 'PhpParser\Node\Expr\BinaryOp\NotEqual';
18
19
    /**
20
     * It's used in conditions
21
     * {left-expr} != {right-expr}
22
     *
23
     * @param \PhpParser\Node\Expr\BinaryOp\NotEqual $expr
24
     * @param Context $context
25
     * @return CompiledExpression
26
     */
27 17
    protected function compile($expr, Context $context)
28
    {
29 17
        $left = $context->getExpressionCompiler()->compile($expr->left);
30 17
        $right = $context->getExpressionCompiler()->compile($expr->right);
31
32 17
        switch ($left->getType()) {
33 17
            case CompiledExpression::INTEGER:
34 17
            case CompiledExpression::DOUBLE:
35 17
            case CompiledExpression::BOOLEAN:
36 17
            case CompiledExpression::ARR:
37 17
            case CompiledExpression::OBJECT:
38 16
                switch ($right->getType()) {
39 16
                    case CompiledExpression::INTEGER:
40 16
                    case CompiledExpression::DOUBLE:
41 16
                    case CompiledExpression::BOOLEAN:
42 16
                    case CompiledExpression::ARR:
43 16
                    case CompiledExpression::OBJECT:
44 15
                        return new CompiledExpression(CompiledExpression::BOOLEAN, $left->getValue() != $right->getValue());
45 1
                }
46 1
                break;
47 2
        }
48
49 2
        return new CompiledExpression(CompiledExpression::BOOLEAN);
50
    }
51
}
52