diff --git a/core/modules/responsive_preview/lib/Drupal/responsive_preview/Plugin/Core/Entity/Device.php b/core/modules/responsive_preview/lib/Drupal/responsive_preview/Entity/Device.php index 7e20a51..41ee427 100644 --- a/core/modules/responsive_preview/lib/Drupal/responsive_preview/Plugin/Core/Entity/Device.php +++ b/core/modules/responsive_preview/lib/Drupal/responsive_preview/Entity/Device.php @@ -2,10 +2,10 @@ /** * @file - * Contains \Drupal\responsive_preview\Plugin\Core\Entity\Device. + * Contains \Drupal\responsive_preview\Entity\Device. */ -namespace Drupal\responsive_preview\Plugin\Core\Entity; +namespace Drupal\responsive_preview\Entity; use Drupal\Core\Entity\Annotation\EntityType; use Drupal\Core\Annotation\Translation; diff --git a/core/modules/responsive_preview/responsive_preview.module b/core/modules/responsive_preview/responsive_preview.module index b87bf63..9b5fa95 100644 --- a/core/modules/responsive_preview/responsive_preview.module +++ b/core/modules/responsive_preview/responsive_preview.module @@ -59,7 +59,7 @@ function responsive_preview_menu() { */ function responsive_preview_get_devices_list() { $devices = entity_load_multiple('responsive_preview_device'); - uasort($devices, array('Drupal\responsive_preview\Plugin\Core\Entity\Device', 'sort')); + uasort($devices, array('Drupal\responsive_preview\Entity\Device', 'sort')); $links = array(); foreach ($devices as $device) {