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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Deploy\Console\Command;
interface DeployStaticOptionsInterface
{
/**
* Key for dry-run option
*/
const DRY_RUN = 'dry-run';
/**
* Key for languages parameter
*/
const LANGUAGE = 'language';
/**
* Key for exclude languages parameter
*/
const EXCLUDE_LANGUAGE = 'exclude-language';
/**
* Key for javascript option
*/
const NO_JAVASCRIPT = 'no-javascript';
/**
* Key for css option
*/
const NO_CSS = 'no-css';
/**
* Key for less option
*/
const NO_LESS = 'no-less';
/**
* Key for images option
*/
const NO_IMAGES = 'no-images';
/**
* Key for fonts option
*/
const NO_FONTS = 'no-fonts';
/**
* Key for misc option
*/
const NO_MISC = 'no-misc';
/**
* Key for html option
*/
const NO_HTML = 'no-html';
/**
* Key for html option
*/
const NO_HTML_MINIFY = 'no-html-minify';
/**
* Key for theme option
*/
const THEME = 'theme';
/**
* Key for exclude theme option
*/
const EXCLUDE_THEME = 'exclude-theme';
/**
* Key for area option
*/
const AREA = 'area';
/**
* Key for exclude area option
*/
const EXCLUDE_AREA = 'exclude-area';
/**
* Jey for jobs option
*/
const JOBS_AMOUNT = 'jobs';
/**
* Symlink locale if it not customized
*/
const SYMLINK_LOCALE = 'symlink-locale';
}