ViewReferenceEvents
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 12
c 0
b 0
f 0
1
<?php
2
3
namespace Victoire\Bundle\ViewReferenceBundle;
4
5
final class ViewReferenceEvents
0 ignored issues
show
introduced by
Missing class doc comment
Loading history...
6
{
7
    /**
8
     * The UPDATE_VIEW_REFERENCE event occurs when a redis reference need to be updated.
9
     */
10
    const UPDATE_VIEW_REFERENCE = 'victoire.view_reference.update';
11
12
    /**
13
     * The REMOVE_VIEW_REFERENCE event occurs when the redis reference need to be deleted.
14
     */
15
    const REMOVE_VIEW_REFERENCE = 'victoire.view_reference.remove';
16
}
17