Skip to content

Commit 4cf3d5d

Browse files
authored
Update TypeTest.php
1 parent 27ad063 commit 4cf3d5d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/src/TypeTest.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class TypeTest extends MimeMapTestBase
1515
*
1616
* @return array<string,mixed>
1717
*/
18-
public function parseProvider(): array
18+
public static function parseProvider(): array
1919
{
2020
return [
2121
'application/ogg;description=Hello there!;asd=fgh' => [
@@ -475,7 +475,7 @@ public function testParse(string $type, array $expectedToString, array $expected
475475
*
476476
* @return array<string,array<string>>
477477
*/
478-
public function parseMalformedProvider(): array
478+
public static function parseMalformedProvider(): array
479479
{
480480
return [
481481
'empty string' => [''],
@@ -523,7 +523,7 @@ public function testGetDescription(): void
523523
*
524524
* @return array<array<string>>
525525
*/
526-
public function missingDescriptionProvider(): array
526+
public static function missingDescriptionProvider(): array
527527
{
528528
return [
529529
['*/*'],
@@ -713,7 +713,7 @@ public function testGetDefaultExtension(): void
713713
*
714714
* @return array<array<string>>
715715
*/
716-
public function getDefaultExtensionFailProvider()
716+
public static function getDefaultExtensionFailProvider()
717717
{
718718
return [
719719
['*/*'],

0 commit comments

Comments
 (0)