Total Complexity | 1 |
Total Lines | 9 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
7 | abstract class Events |
||
8 | { |
||
9 | public const PRE_SERIALIZE = 'serializer.pre_serialize'; |
||
10 | public const POST_SERIALIZE = 'serializer.post_serialize'; |
||
11 | public const PRE_DESERIALIZE = 'serializer.pre_deserialize'; |
||
12 | public const POST_DESERIALIZE = 'serializer.post_deserialize'; |
||
13 | |||
14 | final private function __construct() |
||
18 |