-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathElement.php
More file actions
38 lines (31 loc) · 766 Bytes
/
Element.php
File metadata and controls
38 lines (31 loc) · 766 Bytes
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
<?php
/**
* @see https://github.com/codenomdev/codeigniter4-framework for the canonical source repository
*
* @copyright 2020 - Codenom Dev (https://codenom.com).
* @license https://github.com/codenomdev/codeigniter4-framework/blob/master/LICENSE MIT License
*/
namespace Codenom\Framework\Cache;
class Element
{
/**
* Default path cache
*/
const DEFAULT_PATH = \WRITEPATH . 'generated' . \DIRECTORY_SEPARATOR . 'cache\\';
/**
* Type Cache block
*/
const TYPE_BLOCK = 'block';
/**
* Default path cache block
*/
const PATH_BLOCK = SELF::DEFAULT_PATH . 'block';
/**
* Prefix Block
*/
const PREFIX_BLOCK = 'BLOCK_';
/**
* Default Mode
*/
const MODE = 0640;
}