Skip to content

Commit c8c686c

Browse files
authored
Fix BaseMap::$instance BC issue (#85)
1 parent 6a77084 commit c8c686c

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

src/Map/BaseMap.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ abstract class BaseMap implements MapInterface
1313
{
1414
/**
1515
* Singleton instance.
16+
*
17+
* @var ?MapInterface
1618
*/
17-
protected static ?MapInterface $instance;
19+
protected static $instance;
1820

1921
/**
2022
* Mapping between file extensions and MIME types.

src/Map/DefaultMap.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010
class DefaultMap extends AbstractMap
1111
{
12-
protected static ?MapInterface $instance;
12+
protected static $instance;
1313

1414
public function getFileName(): string
1515
{

src/Map/EmptyMap.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
*/
1111
class EmptyMap extends AbstractMap
1212
{
13-
protected static ?MapInterface $instance;
13+
protected static $instance;
1414
}

tests/fixtures/MiniMap.php.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace FileEye\MimeMap\Map;
99
*/
1010
class MiniMap extends AbstractMap
1111
{
12-
protected static ?MapInterface $instance;
12+
protected static $instance;
1313

1414
public function getFileName(): string
1515
{

0 commit comments

Comments
 (0)