Skip to content

Commit

Permalink
declare SolrServiceProvider.signalSlotDispatcher as protected to allo…
Browse files Browse the repository at this point in the history
…w proper sub-classing
  • Loading branch information
cradeck committed Jul 10, 2024
1 parent 2854bc5 commit 837cd04
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Classes/Service/SolrServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class SolrServiceProvider extends AbstractServiceProvider

protected $timing;

private ?Dispatcher $signalSlotDispatcher = null;
protected ?Dispatcher $signalSlotDispatcher = null;

public function injectDispatcher(Dispatcher $signalSlotDispatcher)
{
Expand Down Expand Up @@ -1353,6 +1353,10 @@ protected function setActiveFacetSelectionForID(array &$activeFacets, string $fa
{
$facetQueries = [];
$facetConfig = $this->getFacetConfig($facetID);
if ($facetConfig == null) {
return;
}

foreach ($facetSelection as $facetTerm => $facetStatus) {
$facetInfo = [
'id' => $facetID,
Expand Down

0 comments on commit 837cd04

Please sign in to comment.