diff options
Diffstat (limited to 'application/History.php')
-rw-r--r-- | application/History.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/application/History.php b/application/History.php index 1be955c5..d230f39d 100644 --- a/application/History.php +++ b/application/History.php | |||
@@ -32,27 +32,27 @@ class History | |||
32 | /** | 32 | /** |
33 | * @var string Action key: a new link has been created. | 33 | * @var string Action key: a new link has been created. |
34 | */ | 34 | */ |
35 | const CREATED = 'CREATED'; | 35 | public const CREATED = 'CREATED'; |
36 | 36 | ||
37 | /** | 37 | /** |
38 | * @var string Action key: a link has been updated. | 38 | * @var string Action key: a link has been updated. |
39 | */ | 39 | */ |
40 | const UPDATED = 'UPDATED'; | 40 | public const UPDATED = 'UPDATED'; |
41 | 41 | ||
42 | /** | 42 | /** |
43 | * @var string Action key: a link has been deleted. | 43 | * @var string Action key: a link has been deleted. |
44 | */ | 44 | */ |
45 | const DELETED = 'DELETED'; | 45 | public const DELETED = 'DELETED'; |
46 | 46 | ||
47 | /** | 47 | /** |
48 | * @var string Action key: settings have been updated. | 48 | * @var string Action key: settings have been updated. |
49 | */ | 49 | */ |
50 | const SETTINGS = 'SETTINGS'; | 50 | public const SETTINGS = 'SETTINGS'; |
51 | 51 | ||
52 | /** | 52 | /** |
53 | * @var string Action key: a bulk import has been processed. | 53 | * @var string Action key: a bulk import has been processed. |
54 | */ | 54 | */ |
55 | const IMPORT = 'IMPORT'; | 55 | public const IMPORT = 'IMPORT'; |
56 | 56 | ||
57 | /** | 57 | /** |
58 | * @var string History file path. | 58 | * @var string History file path. |