File tree 4 files changed +6
-4
lines changed
4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,10 @@ abstract class BaseMap implements MapInterface
13
13
{
14
14
/**
15
15
* Singleton instance.
16
+ *
17
+ * @var ?MapInterface
16
18
*/
17
- protected static ? MapInterface $ instance ;
19
+ protected static $ instance ;
18
20
19
21
/**
20
22
* Mapping between file extensions and MIME types.
Original file line number Diff line number Diff line change 9
9
*/
10
10
class DefaultMap extends AbstractMap
11
11
{
12
- protected static ? MapInterface $ instance ;
12
+ protected static $ instance ;
13
13
14
14
public function getFileName (): string
15
15
{
Original file line number Diff line number Diff line change 10
10
*/
11
11
class EmptyMap extends AbstractMap
12
12
{
13
- protected static ? MapInterface $ instance ;
13
+ protected static $ instance ;
14
14
}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace FileEye\MimeMap\Map;
9
9
*/
10
10
class MiniMap extends AbstractMap
11
11
{
12
- protected static ?MapInterface $instance;
12
+ protected static $instance;
13
13
14
14
public function getFileName(): string
15
15
{
You can’t perform that action at this time.
0 commit comments