Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class RemoveLocaleCacheEvent extends Event |
||
8 | { |
||
9 | /** |
||
10 | * @const String |
||
11 | */ |
||
12 | const PRE_REMOVE_LOCAL_CACHE = 'pre_remove_local_cache.event'; |
||
13 | |||
14 | /** |
||
15 | * @const String |
||
16 | */ |
||
17 | const POST_REMOVE_LOCAL_CACHE = 'post_remove_local_cache.event'; |
||
18 | |||
19 | /** |
||
20 | * @var array |
||
21 | */ |
||
22 | private $managedLocales; |
||
23 | |||
24 | public function __construct(array $managedLocales) |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @return array |
||
31 | */ |
||
32 | public function getManagedLocales() |
||
37 |