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