aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/History.php
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-11-10 10:46:04 +0100
committerGitHub <noreply@github.com>2020-11-10 10:46:04 +0100
commit302662797cb5e8ac6579a99297ceae301f7927a6 (patch)
tree67f493a1cc6d3691742946f1d7e512bffe41e02f /application/History.php
parentc94c32d1a3e86a479cb2582eadc668a5bb476fc6 (diff)
parent2f4df753041088d788d1923692a7d530167a6840 (diff)
downloadShaarli-302662797cb5e8ac6579a99297ceae301f7927a6.tar.gz
Shaarli-302662797cb5e8ac6579a99297ceae301f7927a6.tar.zst
Shaarli-302662797cb5e8ac6579a99297ceae301f7927a6.zip
Merge pull request #1635 from ArthurHoaro/feature/phpcs
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.