Merge pull request #47 from Islandora/rosiel-patch-1

Remove deprecated ${var} pattern.
This commit is contained in:
Annie Oelschlager 2024-06-12 11:39:48 -05:00 committed by GitHub
commit ec0922fa78
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -77,7 +77,7 @@ abstract class SearchApiDisplayBlockDeriver implements ContainerDeriverInterface
$view_display = $display_definition['view_display']; $view_display = $display_definition['view_display'];
// The derived block needs both the view / display identifiers to // The derived block needs both the view / display identifiers to
// construct the pager. // construct the pager.
$machine_name = "${view_id}__${view_display}"; $machine_name = "{$view_id}__{$view_display}";
/** @var \Drupal\views\ViewEntityInterface $view */ /** @var \Drupal\views\ViewEntityInterface $view */
$view = $this->storage->load($view_id); $view = $this->storage->load($view_id);