File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ public function parseCharacter($bIsForIdentifier)
231231 * @throws UnexpectedEOFException
232232 * @throws UnexpectedTokenException
233233 */
234- public function consumeWhiteSpace ()
234+ public function consumeWhiteSpace (): array
235235 {
236236 $ aComments = [];
237237 do {
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ public function atRuleName()
115115 /**
116116 * @return array<int, string>
117117 */
118- public function atRuleArgs ()
118+ public function atRuleArgs (): array
119119 {
120120 $ aResult = [$ this ->mUrl ];
121121 if ($ this ->sPrefix ) {
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ public function atRuleName()
9898 /**
9999 * @return array<int, URL|string>
100100 */
101- public function atRuleArgs ()
101+ public function atRuleArgs (): array
102102 {
103103 $ aResult = [$ this ->oLocation ];
104104 if ($ this ->sMediaQuery ) {
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ public function setValues(array $aSpaceSeparatedValues)
238238 * Old-Style 2-dimensional array returned. Retained for (some) backwards-compatibility.
239239 * Use `getValue()` instead and check for the existence of a (nested set of) ValueList object(s).
240240 */
241- public function getValues ()
241+ public function getValues (): array
242242 {
243243 if (!$ this ->mValue instanceof RuleValueList) {
244244 return [[$ this ->mValue ]];
You can’t perform that action at this time.
0 commit comments