diff --git a/core/modules/views/tests/Drupal/views/Tests/Plugin/Derivative/ViewsLocalTaskTest.php b/core/modules/views/tests/Drupal/views/Tests/Plugin/Derivative/ViewsLocalTaskTest.php index 78d85a5..2b7463d 100644 --- a/core/modules/views/tests/Drupal/views/Tests/Plugin/Derivative/ViewsLocalTaskTest.php +++ b/core/modules/views/tests/Drupal/views/Tests/Plugin/Derivative/ViewsLocalTaskTest.php @@ -326,12 +326,15 @@ public function testGetDerivativeDefinitionsWithExistingLocalTask() { class TestViewsLocalTask extends ViewsLocalTask { /** - * Set applicable views result. + * Sets applicable views result. */ public function setApplicableMenuViews($result) { $this->result = $result; } + /** + * {@inheritdoc} + */ protected function getApplicableMenuViews() { return $this->result; }