Completed
Push — master ( 9d14a0...ddbde7 )
by Дмитрий
02:59
created

ExpressionListener   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A beforeCompile() 0 4 1
1
<?php
2
/**
3
 * @author Patsura Dmitry https://github.com/ovr <[email protected]>
4
 */
5
6
namespace PHPSA\Analyzer\EventListener;
7
8
use Webiny\Component\EventManager\EventListener;
9
10
class ExpressionListener extends EventListener
11
{
12
    public function beforeCompile(\PHPSA\Compiler\Event\ExpressionBeforeCompile $event)
0 ignored issues
show
Unused Code introduced by
The parameter $event 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...
13
    {
14
        
15
    }
16
}
17