diff --git a/core/modules/taxonomy/src/Tests/Views/TaxonomyTermViewTest.php b/core/modules/taxonomy/src/Tests/Views/TaxonomyTermViewTest.php index 9472aac..8ae1a76 100644 --- a/core/modules/taxonomy/src/Tests/Views/TaxonomyTermViewTest.php +++ b/core/modules/taxonomy/src/Tests/Views/TaxonomyTermViewTest.php @@ -125,7 +125,7 @@ public function testTaxonomyTermView() { // @see \Drupal\views\Plugin\views\filter\LanguageFilter::query() \Drupal::moduleHandler()->uninstall(['content_translation', 'language']); - $view = Views::getView('taxonomy_term'); + $view = Views::getView('taxonomy_term'); $view->initDisplay(); $view->setArguments([$term->id()]); $view->build(); diff --git a/core/modules/views/src/Entity/Render/RendererBase.php b/core/modules/views/src/Entity/Render/RendererBase.php index 383f2a7..c74964d 100644 --- a/core/modules/views/src/Entity/Render/RendererBase.php +++ b/core/modules/views/src/Entity/Render/RendererBase.php @@ -51,10 +51,10 @@ * * @param \Drupal\views\ViewExecutable $view * The entity row being rendered. - * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type - * The entity type. * @param \Drupal\Core\Language\LanguageManagerInterface $language_manager * The language manager. + * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type + * The entity type. */ public function __construct(ViewExecutable $view, LanguageManagerInterface $language_manager, EntityTypeInterface $entity_type) { $this->view = $view;