diff options
Diffstat (limited to 'core/modules/tour/tour.api.php')
-rw-r--r-- | core/modules/tour/tour.api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/tour/tour.api.php b/core/modules/tour/tour.api.php index e0c06a15cd5..9c582c025a0 100644 --- a/core/modules/tour/tour.api.php +++ b/core/modules/tour/tour.api.php @@ -52,7 +52,7 @@ function hook_tour_tips_alter(array &$tour_tips, \Drupal\Core\Entity\EntityInter function hook_tour_tips_info_alter(&$info) { // Swap out the class used for this tip plugin. if (isset($info['text'])) { - $info['class'] = 'Drupal\mymodule\Plugin\tour\tip\MyCustomTipPlugin'; + $info['class'] = 'Drupal\my_module\Plugin\tour\tip\MyCustomTipPlugin'; } } |