Skip to content

Commit 7992d33

Browse files
authored
PHP 8.4 Implicit nullable types (#77)
1 parent 3df14d0 commit 7992d33

9 files changed

+19
-19
lines changed

src/Extension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Extension implements ExtensionInterface
2323
*/
2424
protected $map;
2525

26-
public function __construct(string $extension, string $map_class = null)
26+
public function __construct(string $extension, ?string $map_class = null)
2727
{
2828
$this->extension = strtolower($extension);
2929
$this->map = MapHandler::map($map_class);

src/ExtensionInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ interface ExtensionInterface
1515
* @param string $map_class
1616
* (Optional) The FQCN of the map class to use.
1717
*/
18-
public function __construct(string $extension, string $map_class = null);
18+
public function __construct(string $extension, ?string $map_class = null);
1919

2020
/**
2121
* Returns the file extension's preferred MIME type.

src/Map/AbstractMap.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,17 +64,17 @@ public function hasExtension(string $extension): bool
6464
return (bool) $this->getMapEntry('e', $extension);
6565
}
6666

67-
public function listTypes(string $match = null): array
67+
public function listTypes(?string $match = null): array
6868
{
6969
return $this->listEntries('t', $match);
7070
}
7171

72-
public function listAliases(string $match = null): array
72+
public function listAliases(?string $match = null): array
7373
{
7474
return $this->listEntries('a', $match);
7575
}
7676

77-
public function listExtensions(string $match = null): array
77+
public function listExtensions(?string $match = null): array
7878
{
7979
return $this->listEntries('e', $match);
8080
}

src/Map/BaseMap.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function sort(): MapInterface
9191
* @return array<int, int|string>
9292
* The list of the entries.
9393
*/
94-
protected function listEntries(string $entry, string $match = null): array
94+
protected function listEntries(string $entry, ?string $match = null): array
9595
{
9696
if (!isset(static::$map[$entry])) {
9797
return [];

src/Map/MimeMapInterface.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function hasExtension(string $extension): bool;
3737
*
3838
* @return array<int, int|string>
3939
*/
40-
public function listTypes(string $match = null): array;
40+
public function listTypes(?string $match = null): array;
4141

4242
/**
4343
* Lists all the MIME types aliases defined in the map.
@@ -46,7 +46,7 @@ public function listTypes(string $match = null): array;
4646
*
4747
* @return array<int, int|string>
4848
*/
49-
public function listAliases(string $match = null): array;
49+
public function listAliases(?string $match = null): array;
5050

5151
/**
5252
* Lists all the extensions defined in the map.
@@ -55,7 +55,7 @@ public function listAliases(string $match = null): array;
5555
*
5656
* @return array<int, int|string>
5757
*/
58-
public function listExtensions(string $match = null): array;
58+
public function listExtensions(?string $match = null): array;
5959

6060
/**
6161
* Adds a description of a MIME type.

src/MapHandler.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public static function setDefaultMapClass(string $map_class): void
4141
* (Optional) The map FQCN to be used. If null, the default map will be
4242
* used.
4343
*/
44-
public static function map(string $map_class = null): MimeMapInterface
44+
public static function map(?string $map_class = null): MimeMapInterface
4545
{
4646
if ($map_class === null) {
4747
$map_class = static::$defaultMapClass;

src/Type.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class Type implements TypeInterface
7373
*/
7474
protected $map;
7575

76-
public function __construct(string $type_string, string $map_class = null)
76+
public function __construct(string $type_string, ?string $map_class = null)
7777
{
7878
TypeParser::parse($type_string, $this);
7979
$this->map = MapHandler::map($map_class);
@@ -104,7 +104,7 @@ public function getMediaComment(): string
104104
throw new UndefinedException('Media comment is not defined');
105105
}
106106

107-
public function setMediaComment(string $comment = null): TypeInterface
107+
public function setMediaComment(?string $comment = null): TypeInterface
108108
{
109109
$this->mediaComment = $comment;
110110
return $this;
@@ -135,7 +135,7 @@ public function getSubTypeComment(): string
135135
throw new UndefinedException('Subtype comment is not defined');
136136
}
137137

138-
public function setSubTypeComment(string $comment = null): TypeInterface
138+
public function setSubTypeComment(?string $comment = null): TypeInterface
139139
{
140140
$this->subTypeComment = $comment;
141141
return $this;
@@ -167,7 +167,7 @@ public function getParameter(string $name): TypeParameter
167167
throw new UndefinedException("Parameter $name is not defined");
168168
}
169169

170-
public function addParameter(string $name, string $value, string $comment = null): void
170+
public function addParameter(string $name, string $value, ?string $comment = null): void
171171
{
172172
$this->parameters[$name] = new TypeParameter($name, $value, $comment);
173173
}

src/TypeInterface.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ interface TypeInterface
1717
* @param string $map_class
1818
* (Optional) The FQCN of the map class to use.
1919
*/
20-
public function __construct(string $type_string, string $map_class = null);
20+
public function __construct(string $type_string, ?string $map_class = null);
2121

2222
/**
2323
* Gets a MIME type's media.
@@ -48,7 +48,7 @@ public function getMediaComment(): string;
4848
*
4949
* @param string $comment (optional) a comment; when missing any existing comment is removed.
5050
*/
51-
public function setMediaComment(string $comment = null): TypeInterface;
51+
public function setMediaComment(?string $comment = null): TypeInterface;
5252

5353
/**
5454
* Gets a MIME type's subtype.
@@ -77,7 +77,7 @@ public function getSubTypeComment(): string;
7777
*
7878
* @param string $comment (optional) a comment; when missing any existing comment is removed.
7979
*/
80-
public function setSubTypeComment(string $comment = null): TypeInterface;
80+
public function setSubTypeComment(?string $comment = null): TypeInterface;
8181

8282
/**
8383
* Checks if the MIME type has any parameter.
@@ -110,7 +110,7 @@ public function getParameter(string $name): TypeParameter;
110110
/**
111111
* Add a parameter to this type
112112
*/
113-
public function addParameter(string $name, string $value, string $comment = null): void;
113+
public function addParameter(string $name, string $value, ?string $comment = null): void;
114114

115115
/**
116116
* Remove a parameter from this type.

src/TypeParameter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class TypeParameter
3535
* @param string $value Parameter value.
3636
* @param string $comment Comment for this parameter.
3737
*/
38-
public function __construct(string $name, string $value, string $comment = null)
38+
public function __construct(string $name, string $value, ?string $comment = null)
3939
{
4040
$this->name = $name;
4141
$this->value = $value;

0 commit comments

Comments
 (0)