Passed
Push — master ( e648bb...78c887 )
by JHONATAN
03:51
created

PersistenceEvents   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 22
c 0
b 0
f 0
ccs 0
cts 1
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
namespace Vox\Webservice\Event;
4
5
final class PersistenceEvents
6
{
7
    const PRE_FLUSH    = 'preFlush';
8
9
    const PRE_PERSIST  = 'prePersist';
10
    
11
    const PRE_UPDATE   = 'preUpdate';
12
    
13
    const PRE_REMOVE   = 'preRemove';
14
15
    const POST_PERSIST = 'postPersist';
16
17
    const POST_UPDATE  = 'postUpdate';
18
    
19
    const POST_REMOVE  = 'postRemove';
20
21
    const POST_FLUSH   = 'postFlush';
22
23
    const ON_LOAD      = 'onLoad';
24
25
    private function __construct()
26
    {
27
        
28
    }
29
}
30