@@ -33,7 +33,7 @@ public function expandBorderShorthand($sCss, $sExpected): void
3333 /**
3434 * @return array<int, array<int, string>>
3535 */
36- public static function expandBorderShorthandProvider ()
36+ public static function expandBorderShorthandProvider (): array
3737 {
3838 return [
3939 ['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
6666 /**
6767 * @return array<int, array<int, string>>
6868 */
69- public static function expandFontShorthandProvider ()
69+ public static function expandFontShorthandProvider (): array
7070 {
7171 return [
7272 [
@@ -122,7 +122,7 @@ public function expandBackgroundShorthand($sCss, $sExpected): void
122122 /**
123123 * @return array<int, array<int, string>>
124124 */
125- public static function expandBackgroundShorthandProvider ()
125+ public static function expandBackgroundShorthandProvider (): array
126126 {
127127 return [
128128 ['body {border: 1px;} ' , 'body {border: 1px;} ' ],
@@ -175,7 +175,7 @@ public function expandDimensionsShorthand($sCss, $sExpected): void
175175 /**
176176 * @return array<int, array<int, string>>
177177 */
178- public static function expandDimensionsShorthandProvider ()
178+ public static function expandDimensionsShorthandProvider (): array
179179 {
180180 return [
181181 ['body {border: 1px;} ' , 'body {border: 1px;} ' ],
@@ -213,7 +213,7 @@ public function createBorderShorthand($sCss, $sExpected): void
213213 /**
214214 * @return array<int, array<int, string>>
215215 */
216- public static function createBorderShorthandProvider ()
216+ public static function createBorderShorthandProvider (): array
217217 {
218218 return [
219219 ['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
244244 /**
245245 * @return array<int, array<int, string>>
246246 */
247- public static function createFontShorthandProvider ()
247+ public static function createFontShorthandProvider (): array
248248 {
249249 return [
250250 ['body {font-size: 12px; font-family: serif} ' , 'body {font: 12px serif;} ' ],
@@ -287,7 +287,7 @@ public function createDimensionsShorthand($sCss, $sExpected): void
287287 /**
288288 * @return array<int, array<int, string>>
289289 */
290- public static function createDimensionsShorthandProvider ()
290+ public static function createDimensionsShorthandProvider (): array
291291 {
292292 return [
293293 ['body {border: 1px;} ' , 'body {border: 1px;} ' ],
@@ -325,7 +325,7 @@ public function createBackgroundShorthand($sCss, $sExpected): void
325325 /**
326326 * @return array<int, array<int, string>>
327327 */
328- public static function createBackgroundShorthandProvider ()
328+ public static function createBackgroundShorthandProvider (): array
329329 {
330330 return [
331331 ['body {border: 1px;} ' , 'body {border: 1px;} ' ],
0 commit comments