1111class OutputFormat
1212{
1313 /**
14- * Value format
14+ * Value format: `"` means double-quote, `'` means single-quote
15+ *
16+ * @var string
1517 */
16- // " means double-quote, ' means single-quote
1718 public $ sStringQuotingType = '" ' ;
1819
19- // Output RGB colors in hash notation if possible
20+ /**
21+ * Output RGB colors in hash notation if possible
22+ *
23+ * @var string
24+ */
2025 public $ bRGBHashNotation = true ;
2126
2227 /**
2328 * Declaration format
29+ *
30+ * Semicolon after the last rule of a declaration block can be omitted. To do that, set this false.
31+ *
32+ * @var bool
2433 */
25- // Semicolon after the last rule of a declaration block can be omitted. To do that, set this false.
2634 public $ bSemicolonAfterLastRule = true ;
2735
2836 /**
@@ -45,38 +53,57 @@ class OutputFormat
4553
4654 public $ sSpaceBetweenBlocks = "\n" ;
4755
48- // Content injected in and around @-rule blocks.
56+ /**
57+ * Content injected in and around @-rule blocks.
58+ *
59+ * @var string
60+ */
4961 public $ sBeforeAtRuleBlock = '' ;
5062
5163 public $ sAfterAtRuleBlock = '' ;
5264
53- // This is what’s printed before and after the comma if a declaration block contains multiple selectors.
65+ /**
66+ * This is what’s printed before and after the comma if a declaration block contains multiple selectors.
67+ *
68+ * @var string
69+ */
5470 public $ sSpaceBeforeSelectorSeparator = '' ;
5571
5672 public $ sSpaceAfterSelectorSeparator = ' ' ;
5773
58- // This is what’s printed after the comma of value lists
74+ /**
75+ * This is what’s printed after the comma of value lists
76+ *
77+ * @var string
78+ */
5979 public $ sSpaceBeforeListArgumentSeparator = '' ;
6080
6181 public $ sSpaceAfterListArgumentSeparator = '' ;
6282
6383 public $ sSpaceBeforeOpeningBrace = ' ' ;
6484
65- // Content injected in and around declaration blocks.
85+ /**
86+ * Content injected in and around declaration blocks.
87+ *
88+ * @var string
89+ */
6690 public $ sBeforeDeclarationBlock = '' ;
6791
6892 public $ sAfterDeclarationBlockSelectors = '' ;
6993
7094 public $ sAfterDeclarationBlock = '' ;
7195
7296 /**
73- * Indentation
97+ * Indentation character(s) per level. Only applicable if newlines are used in any of the spacing settings.
98+ *
99+ * @var string
74100 */
75- // Indentation character(s) per level. Only applicable if newlines are used in any of the spacing settings.
76101 public $ sIndentation = "\t" ;
77102
78103 /**
79104 * Output exceptions.
105+ *
106+ * @var bool
80107 */
81108 public $ bIgnoreExceptions = false ;
82109
0 commit comments