Events
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 7
c 0
b 0
f 0
1
<?php
2
3
4
namespace Starkerxp\UserBundle;
5
6
7
class Events
8
{
9
    const USER_CREATED = "starkerxp_user.entity.user.created";
10
    const USER_UPDATED = "starkerxp_user.entity.user.updated";
11
    const USER_DELETED = "starkerxp_user.entity.company.deleted";
12
    
13
}
0 ignored issues
show
Coding Style introduced by
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
14