Skip to content

Commit

Permalink
refs vufind-org#2999 sync method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
RLangeUni committed Oct 16, 2024
1 parent bd13052 commit 6ee8f92
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ protected function injectSourceIdentifier(RecordCollectionInterface $response)
*
* @return void
*/
public function setResultSetIdentifier(string $uuid): void {
public function setResultSetIdentifier(string $uuid) {
$this->recordCollection->setResultSetIdentifier($uuid);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ public function count(): int
*
* @return void
*/
public function setResultSetIdentifier($uuid) {
public function setResultSetIdentifier(string $uuid) {
foreach ($this->records as $record) {
$record->setResultSetIdentifier($uuid);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public function getSourceIdentifier();
*
* @return void
*/
public function setResultSetIdentifier($uuid);
public function setResultSetIdentifier(string $uuid);

/**
* Add a record to the collection.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public function getSourceIdentifier();
*/
public function getSearchBackendIdentifier();

public function setResultSetIdentifier($uuid);
public function setResultSetIdentifier(string $uuid);

public function getResultSetIdentifier();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public function getSearchBackendIdentifier()
*
* @return void
*/
public function setResultSetIdentifier(string $uuid): void {
public function setResultSetIdentifier(string $uuid) {
$this->resultSetIdentifier = $uuid;
}

Expand Down

0 comments on commit 6ee8f92

Please sign in to comment.