Skip to content

Commit

Permalink
Merge pull request #71 from beatrycze-volk/adjust-function-call
Browse files Browse the repository at this point in the history
Call `findSolrByCollections` function
  • Loading branch information
MarcMoschSLUB authored Mar 22, 2024
2 parents 8e22e2c + d4439b0 commit f9bc230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Controller/SingleCollectionController.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public function showAction()
$listedMetadata = $this->metadataRepository->findByIsListed(true);

// find all documents from Solr
$solrSearch = $this->documentRepository->findSolrByCollection($collections, $this->settings, $searchParams, $listedMetadata);
$solrSearch = $this->documentRepository->findSolrByCollections($collections, $this->settings, $searchParams, $listedMetadata);

Check failure on line 142 in Classes/Controller/SingleCollectionController.php

View workflow job for this annotation

GitHub Actions / phpstan

Call to an undefined method Kitodo\Dlf\Domain\Repository\DocumentRepository::findSolrByCollections().

// get all sortable Metadata from Kitodo.Presentation
$metadata = $this->metadataRepository->findByIsSortable(true);
Expand Down

0 comments on commit f9bc230

Please sign in to comment.