Events
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 15
c 0
b 0
f 0
1
<?php
2
3
namespace Starkerxp\CampaignBundle;
4
5
6
class Events
7
{
8
    const CAMPAIGN_CREATED = "starkerxp_campaign.entity.campaign.created";
9
    const CAMPAIGN_UPDATED = "starkerxp_campaign.entity.campaign.updated";
10
    const CAMPAIGN_DELETED = "starkerxp_campaign.entity.campaign.deleted";
11
12
    const EVENT_CREATED = "starkerxp_campaign.entity.event.created";
13
    const EVENT_UPDATED = "starkerxp_campaign.entity.event.updated";
14
    const EVENT_DELETED = "starkerxp_campaign.entity.event.deleted";
15
16
    const TEMPLATE_CREATED = "starkerxp_campaign.entity.template.created";
17
    const TEMPLATE_UPDATED = "starkerxp_campaign.entity.template.updated";
18
    const TEMPLATE_DELETED = "starkerxp_campaign.entity.template.deleted";
19
20
}
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...
21