|
1
|
|
|
<?php |
|
2
|
|
|
|
|
|
|
|
|
|
3
|
|
|
namespace DMT\Insolvency\Validation; |
|
4
|
|
|
|
|
5
|
|
|
use JMS\Serializer\Annotation as JMS; |
|
6
|
|
|
use Symfony\Component\Validator\Constraints as Assert; |
|
7
|
|
|
|
|
8
|
|
|
/** |
|
9
|
|
|
* Class PublicationType |
|
10
|
|
|
*/ |
|
|
|
|
|
|
11
|
|
|
class PublicationType |
|
12
|
|
|
{ |
|
13
|
|
|
/** Rulings on the commencement of bankruptcy procedures */ |
|
|
|
|
|
|
14
|
|
|
public const COMMENCEMENT_BANKRUPTCY = 'Uitspraken faillissement'; |
|
15
|
|
|
|
|
16
|
|
|
/** Rulings on the commencement of procedures on debt restucturing */ |
|
|
|
|
|
|
17
|
|
|
public const COMMENCEMENT_DEPT_RESTRUCTURING = 'Uitspraken schuldsanering'; |
|
18
|
|
|
|
|
19
|
|
|
/** Rulings on the commencement of procedures on moratorium */ |
|
|
|
|
|
|
20
|
|
|
public const COMMENCEMENT_MORATORIUM = 'Uitspraken surseance'; |
|
21
|
|
|
|
|
22
|
|
|
/** Rulings on the termination of bankruptcy procedures */ |
|
|
|
|
|
|
23
|
|
|
public const TERMINATION_BANKRUPTCY = 'Einde faillissementen'; |
|
24
|
|
|
|
|
25
|
|
|
/** Rulings on the termination of procedures on debt restucturing */ |
|
|
|
|
|
|
26
|
|
|
public const TERMINATION_DEPT_RESTRUCTURING = 'Einde schuldsaneringen'; |
|
27
|
|
|
|
|
28
|
|
|
/** Rulings on the termination of moratorium */ |
|
|
|
|
|
|
29
|
|
|
public const TERMINATION_MORATORIUM = 'Einde surseances'; |
|
30
|
|
|
|
|
31
|
|
|
/** Other insolvency publications */ |
|
|
|
|
|
|
32
|
|
|
public const OTHER_PUBLICATIONS = 'Overig'; |
|
33
|
|
|
|
|
34
|
|
|
/** |
|
|
|
|
|
|
35
|
|
|
* @return array |
|
36
|
|
|
*/ |
|
37
|
|
|
public static function getListValues(): array |
|
38
|
|
|
{ |
|
39
|
|
|
return [ |
|
40
|
|
|
self::COMMENCEMENT_BANKRUPTCY, |
|
41
|
|
|
self::COMMENCEMENT_DEPT_RESTRUCTURING, |
|
42
|
|
|
self::COMMENCEMENT_MORATORIUM, |
|
43
|
|
|
self::TERMINATION_BANKRUPTCY, |
|
44
|
|
|
self::TERMINATION_DEPT_RESTRUCTURING, |
|
45
|
|
|
self::TERMINATION_MORATORIUM, |
|
46
|
|
|
self::OTHER_PUBLICATIONS, |
|
47
|
|
|
]; |
|
48
|
|
|
} |
|
49
|
|
|
} |
|
50
|
|
|
|