Passed
Pull Request — master (#42)
by Baptiste
06:09
created

Events   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 12
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A __clone() 0 3 1
1
<?php declare(strict_types=1);
2
namespace Behapi\EventListener;
3
4
final class Events
5
{
6
    const REQUEST_PRE_SENDING = 'request.pre_sending';
7
8
    private function __construct()
9
    {
10
    }
11
12
    private function __clone()
13
    {
14
    }
15
}
16