Skip to content

Commit 5eb4930

Browse files
Apply php-cs-fixer fix --rules nullable_type_declaration_for_default_null_value
1 parent 57c03a5 commit 5eb4930

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Link.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class Link implements EvolvableLinkInterface
5050
*/
5151
private $attributes = [];
5252

53-
public function __construct(string $rel = null, string $href = '')
53+
public function __construct(?string $rel = null, string $href = '')
5454
{
5555
if (null !== $rel) {
5656
$this->rel[$rel] = $rel;

0 commit comments

Comments
 (0)