@@ -73,7 +73,7 @@ class Type implements TypeInterface
73
73
*/
74
74
protected $ map ;
75
75
76
- public function __construct (string $ type_string , string $ map_class = null )
76
+ public function __construct (string $ type_string , ? string $ map_class = null )
77
77
{
78
78
TypeParser::parse ($ type_string , $ this );
79
79
$ this ->map = MapHandler::map ($ map_class );
@@ -104,7 +104,7 @@ public function getMediaComment(): string
104
104
throw new UndefinedException ('Media comment is not defined ' );
105
105
}
106
106
107
- public function setMediaComment (string $ comment = null ): TypeInterface
107
+ public function setMediaComment (? string $ comment = null ): TypeInterface
108
108
{
109
109
$ this ->mediaComment = $ comment ;
110
110
return $ this ;
@@ -135,7 +135,7 @@ public function getSubTypeComment(): string
135
135
throw new UndefinedException ('Subtype comment is not defined ' );
136
136
}
137
137
138
- public function setSubTypeComment (string $ comment = null ): TypeInterface
138
+ public function setSubTypeComment (? string $ comment = null ): TypeInterface
139
139
{
140
140
$ this ->subTypeComment = $ comment ;
141
141
return $ this ;
@@ -167,7 +167,7 @@ public function getParameter(string $name): TypeParameter
167
167
throw new UndefinedException ("Parameter $ name is not defined " );
168
168
}
169
169
170
- public function addParameter (string $ name , string $ value , string $ comment = null ): void
170
+ public function addParameter (string $ name , string $ value , ? string $ comment = null ): void
171
171
{
172
172
$ this ->parameters [$ name ] = new TypeParameter ($ name , $ value , $ comment );
173
173
}
0 commit comments