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
namespace Starkerxp\LeadBundle;
4
5
6
class Events
7
{
8
    const LEAD_CREATED = "starkerxp_lead.entity.lead.created";
9
    const LEAD_UPDATED = "starkerxp_lead.entity.lead.updated";
10
11
12
}
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...
13