diff --git a/lib/Drupal/config_devel/Config/ConfigDevelConfigFactoryOverride.php b/lib/Drupal/config_devel/Config/ConfigDevelConfigFactoryOverride.php
index d72cd3e..f333f98 100644
--- a/lib/Drupal/config_devel/Config/ConfigDevelConfigFactoryOverride.php
+++ b/lib/Drupal/config_devel/Config/ConfigDevelConfigFactoryOverride.php
@@ -7,7 +7,7 @@
 
 namespace Drupal\config_devel\Config;
 
-use Drupal\Component\Utility\Settings;
+use Drupal\Core\Site\Settings;
 use Drupal\Core\Config\Config;
 use Drupal\Core\Config\ConfigFactoryInterface;
 use Drupal\Core\Config\ConfigFactoryOverrideInterface;
@@ -55,7 +55,7 @@ class ConfigDevelConfigFactoryOverride implements ConfigFactoryOverrideInterface
    *   The config_devel configuration storage engine.
    * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
    *   The configuration factory.
-   * @param \Drupal\Component\Utility\Settings $settings
+   * @param \Drupal\Core\Site\Settings $settings
    *   The settings array.
    */
   public function __construct(StorageInterface $active_storage, StorageInterface $config_devel_storage, ConfigFactoryInterface $config_factory, Settings $settings) {
diff --git a/lib/Drupal/config_devel/Config/FileStorageFactory.php b/lib/Drupal/config_devel/Config/FileStorageFactory.php
index 55ed140..7da30b3 100644
--- a/lib/Drupal/config_devel/Config/FileStorageFactory.php
+++ b/lib/Drupal/config_devel/Config/FileStorageFactory.php
@@ -7,7 +7,7 @@
 namespace Drupal\config_devel\Config;
 
 use Drupal\Core\Config\FileStorage;
-use Drupal\Component\Utility\Settings;
+use Drupal\Core\Site\Settings;
 
 /**
  * Provides a factory for creating devel config file storage objects.
@@ -17,7 +17,7 @@ class FileStorageFactory {
   /**
    * The settings array.
    *
-   * @var \Drupal\Component\Utility\Settings
+   * @var \Drupal\Core\Site\Settings
    */
   protected $settings;
 
diff --git a/lib/Drupal/config_devel/EventSubscriber/ConfigDevelFileStorageSubscriber.php b/lib/Drupal/config_devel/EventSubscriber/ConfigDevelFileStorageSubscriber.php
index 469cc2b..df4e6f7 100644
--- a/lib/Drupal/config_devel/EventSubscriber/ConfigDevelFileStorageSubscriber.php
+++ b/lib/Drupal/config_devel/EventSubscriber/ConfigDevelFileStorageSubscriber.php
@@ -11,7 +11,7 @@ use Symfony\Component\EventDispatcher\EventSubscriberInterface;
 use Symfony\Component\HttpKernel\KernelEvents;
 use Symfony\Component\Yaml\Exception\DumpException;
 use Symfony\Component\HttpKernel\Event\GetResponseEvent;
-use Drupal\Component\Utility\Settings;
+use Drupal\Core\Site\Settings;
 use Drupal\Core\Config\FileStorage;
 use Drupal\Core\Config\InstallStorage;
 use Drupal\Core\Config\Config;
@@ -43,7 +43,7 @@ class ConfigDevelFileStorageSubscriber implements EventSubscriberInterface {
   /**
    * The settings array.
    *
-   * @var \Drupal\Component\Utility\Settings
+   * @var \Drupal\Core\Site\Settings
    */
   protected $settings;
 
