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)
231
231
* @throws UnexpectedEOFException
232
232
* @throws UnexpectedTokenException
233
233
*/
234
- public function consumeWhiteSpace ()
234
+ public function consumeWhiteSpace (): array
235
235
{
236
236
$ aComments = [];
237
237
do {
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ public function atRuleName()
115
115
/**
116
116
* @return array<int, string>
117
117
*/
118
- public function atRuleArgs ()
118
+ public function atRuleArgs (): array
119
119
{
120
120
$ aResult = [$ this ->mUrl ];
121
121
if ($ this ->sPrefix ) {
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ public function atRuleName()
98
98
/**
99
99
* @return array<int, URL|string>
100
100
*/
101
- public function atRuleArgs ()
101
+ public function atRuleArgs (): array
102
102
{
103
103
$ aResult = [$ this ->oLocation ];
104
104
if ($ this ->sMediaQuery ) {
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ public function setValues(array $aSpaceSeparatedValues)
238
238
* Old-Style 2-dimensional array returned. Retained for (some) backwards-compatibility.
239
239
* Use `getValue()` instead and check for the existence of a (nested set of) ValueList object(s).
240
240
*/
241
- public function getValues ()
241
+ public function getValues (): array
242
242
{
243
243
if (!$ this ->mValue instanceof RuleValueList) {
244
244
return [[$ this ->mValue ]];
You can’t perform that action at this time.
0 commit comments