-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.power
More file actions
61 lines (54 loc) · 1.18 KB
/
code.power
File metadata and controls
61 lines (54 loc) · 1.18 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
* The upload max filesize value
*
* @var string
* @since 5.0.2
**/
protected string $upload_max_filesize = '[[[upload_max_filesize]]]';
/**
* The post max size value
*
* @var string
* @since 5.0.2
**/
protected string $post_max_size = '[[[post_max_size]]]';
/**
* The max execution time value
*
* @var int
* @since 5.0.2
**/
protected int $max_execution_time = [[[max_execution_time]]];
/**
* The max input vars value
*
* @var int
* @since 5.0.2
**/
protected int $max_input_vars = [[[max_input_vars]]];
/**
* The max input time value
*
* @var int
* @since 5.0.2
**/
protected int $max_input_time = [[[max_input_time]]];
/**
* The memory limit value
*
* @var string
* @since 5.0.2
**/
protected string $memory_limit = '[[[memory_limit]]]';
/**
* Constructor.
*
* @since 5.0.2
*/
public function __construct($app = null)
{
parent::__construct($app);
// set the required PHP Configures
$this->set('environment.name', '[[[Component]]] environment');
$this->set('environment.wiki_url', '[[[environment_wiki_url]]]');
}