Skip to content

Commit

Permalink
MNT Update method signature for test class
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli committed Aug 19, 2024
1 parent a76a423 commit b408235
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/Navigator/UnstagedRecord.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function getMimeType()
return 'text/html';
}

public function CMSEditLink()
public function CMSEditLink(): ?string
{
return null;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Navigator/UnversionedRecord.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function getMimeType()
return 'text/html';
}

public function CMSEditLink()
public function CMSEditLink(): ?string
{
return null;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Navigator/VersionedRecord.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function getMimeType()
return 'text/html';
}

public function CMSEditLink()
public function CMSEditLink(): ?string
{
return null;
}
Expand Down

0 comments on commit b408235

Please sign in to comment.