Skip to content

Commit

Permalink
MNT Update method signature for test class (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli authored Aug 25, 2024
1 parent 0bbb9fd commit 9aa5941
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 9aa5941

Please sign in to comment.