]> git.mxchange.org Git - friendica.git/blob - src/Core/Cache/Duration.php
Merge pull request #8129 from nupplaphil/task/cleanup_cache
[friendica.git] / src / Core / Cache / Duration.php
1 <?php
2
3 namespace Friendica\Core\Cache;
4
5 /**
6  * Enumeration for cache durations
7  */
8 abstract class Duration
9 {
10         const MONTH        = 2592000;
11         const HOUR         = 3600;
12         const HALF_HOUR    = 1800;
13         const QUARTER_HOUR = 900;
14         const MINUTE       = 60;
15         const WEEK         = 604800;
16         const INFINITE     = 0;
17         const DAY          = 86400;
18         const FIVE_MINUTES = 300;
19 }