From b27bb8eb875e4f73fa70339526c2e9bd2bd002cc Mon Sep 17 00:00:00 2001 From: NesleeCanilPinto Date: Thu, 16 Apr 2020 11:17:04 +0530 Subject: [PATCH] Issue #3127666 by Neslee Canil Pinto: Call to undefined method Drupal\colorbox\Commands\ColorboxCommands::getName() --- colorbox.services.yml | 4 ---- drush.services.yml | 5 +++++ 2 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 drush.services.yml diff --git a/colorbox.services.yml b/colorbox.services.yml index 452e23f..1fce9d0 100644 --- a/colorbox.services.yml +++ b/colorbox.services.yml @@ -5,7 +5,3 @@ services: colorbox.attachment: class: Drupal\colorbox\ColorboxAttachment arguments: ['@colorbox.activation_check', '@module_handler', '@config.factory'] - colorbox.commands: - class: \Drupal\colorbox\Commands\ColorboxCommands - tags: - - { name: drush.command } diff --git a/drush.services.yml b/drush.services.yml new file mode 100644 index 0000000..0f8040e --- /dev/null +++ b/drush.services.yml @@ -0,0 +1,5 @@ +services: + colorbox.commands: + class: \Drupal\colorbox\Commands\ColorboxCommands + tags: + - { name: drush.command } -- GitLab