1 | <?php |
||
5 | class Options |
||
6 | { |
||
7 | const ALL = 'all'; |
||
8 | const EMPTY_ATTRIBUTES = 'remove-empty-attributes'; |
||
9 | const ATTRIBUTE_QUOTES = 'remove-attributequotes'; |
||
10 | const BOOLEAN_ATTRIBUTES = 'boolean-attributes'; |
||
11 | const OPTIONAL_ELEMENTS = 'optional-elements'; |
||
12 | const REMOVE_DEFAULTS = 'remove-defaults'; |
||
13 | const WHITESPACES = 'whitespaces'; |
||
14 | const COMMENTS = 'comments'; |
||
15 | |||
16 | private static $options; |
||
17 | |||
18 | /** |
||
19 | * Get all the options available for this minifier. |
||
20 | * |
||
21 | * @return array |
||
22 | */ |
||
23 | 2 | public static function options() |
|
39 | } |
||
40 |