forked from smartemailing/types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FieldOfApplication.php
74 lines (39 loc) · 1.37 KB
/
FieldOfApplication.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
declare(strict_types = 1);
namespace SmartEmailing\Types;
use Consistence\Type\ObjectMixinTrait;
use SmartEmailing\Types\ExtractableTraits\EnumExtractableTrait;
final class FieldOfApplication extends Enum
{
use ObjectMixinTrait;
use EnumExtractableTrait;
public const CARS = 'cars';
public const SAFETY = 'safety';
public const TRAVEL = 'travel';
public const TRANSPORT = 'transport';
public const ESHOP = 'eshop';
public const PHARMACY = 'pharmacy';
public const FINANCIAL = 'financial';
public const PHOTOGRAPHY = 'photography';
public const HOTELS = 'hotels';
public const COSMETICS = 'cosmetics';
public const PERSONAL_DEVELOPMENT = 'personal-development';
public const MARGETING = 'margeting';
public const NON_PROFIT = 'non-profit';
public const OTHER = 'other';
public const FOOD = 'food';
public const LAW = 'law';
public const REAL_ESTATES = 'real-estates';
public const CRAFT = 'craft';
public const GARDEN = 'garden';
public const IT = 'it';
public const ARCHITECTURE = 'architecture';
public const ENGINEERING = 'engineering';
public const WHOLESALE = 'wholesale';
public const PUBLIC_ADMINISTRATION = 'public-administration';
public const PRODUCTION = 'production';
public const EDUCATION = 'education';
public const SLIM = 'slim';
public const HEALTHCARE = 'healthcare';
public const AGRICULTURE = 'agriculture';
}