@@ -33,7 +33,7 @@ public function expandBorderShorthand($sCss, $sExpected): void
33
33
/**
34
34
* @return array<int, array<int, string>>
35
35
*/
36
- public static function expandBorderShorthandProvider ()
36
+ public static function expandBorderShorthandProvider (): array
37
37
{
38
38
return [
39
39
['body{ border: 2px solid #000 } ' , 'body {border-width: 2px;border-style: solid;border-color: #000;} ' ],
@@ -66,7 +66,7 @@ public function expandFontShorthand($sCss, $sExpected): void
66
66
/**
67
67
* @return array<int, array<int, string>>
68
68
*/
69
- public static function expandFontShorthandProvider ()
69
+ public static function expandFontShorthandProvider (): array
70
70
{
71
71
return [
72
72
[
@@ -122,7 +122,7 @@ public function expandBackgroundShorthand($sCss, $sExpected): void
122
122
/**
123
123
* @return array<int, array<int, string>>
124
124
*/
125
- public static function expandBackgroundShorthandProvider ()
125
+ public static function expandBackgroundShorthandProvider (): array
126
126
{
127
127
return [
128
128
['body {border: 1px;} ' , 'body {border: 1px;} ' ],
@@ -175,7 +175,7 @@ public function expandDimensionsShorthand($sCss, $sExpected): void
175
175
/**
176
176
* @return array<int, array<int, string>>
177
177
*/
178
- public static function expandDimensionsShorthandProvider ()
178
+ public static function expandDimensionsShorthandProvider (): array
179
179
{
180
180
return [
181
181
['body {border: 1px;} ' , 'body {border: 1px;} ' ],
@@ -213,7 +213,7 @@ public function createBorderShorthand($sCss, $sExpected): void
213
213
/**
214
214
* @return array<int, array<int, string>>
215
215
*/
216
- public static function createBorderShorthandProvider ()
216
+ public static function createBorderShorthandProvider (): array
217
217
{
218
218
return [
219
219
['body {border-width: 2px;border-style: solid;border-color: #000;} ' , 'body {border: 2px solid #000;} ' ],
@@ -244,7 +244,7 @@ public function createFontShorthand($sCss, $sExpected): void
244
244
/**
245
245
* @return array<int, array<int, string>>
246
246
*/
247
- public static function createFontShorthandProvider ()
247
+ public static function createFontShorthandProvider (): array
248
248
{
249
249
return [
250
250
['body {font-size: 12px; font-family: serif} ' , 'body {font: 12px serif;} ' ],
@@ -287,7 +287,7 @@ public function createDimensionsShorthand($sCss, $sExpected): void
287
287
/**
288
288
* @return array<int, array<int, string>>
289
289
*/
290
- public static function createDimensionsShorthandProvider ()
290
+ public static function createDimensionsShorthandProvider (): array
291
291
{
292
292
return [
293
293
['body {border: 1px;} ' , 'body {border: 1px;} ' ],
@@ -325,7 +325,7 @@ public function createBackgroundShorthand($sCss, $sExpected): void
325
325
/**
326
326
* @return array<int, array<int, string>>
327
327
*/
328
- public static function createBackgroundShorthandProvider ()
328
+ public static function createBackgroundShorthandProvider (): array
329
329
{
330
330
return [
331
331
['body {border: 1px;} ' , 'body {border: 1px;} ' ],
0 commit comments