Index: modules/bibcite_entity/src/Form/DeleteMultiple.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- modules/bibcite_entity/src/Form/DeleteMultiple.php	(revision 6701c623d7ff4ec145caea6e25c52879d6c77e98)
+++ modules/bibcite_entity/src/Form/DeleteMultiple.php	(revision 7700754a2b6bb632a9bed1947b0ecf783fab26c0)
@@ -7,7 +7,7 @@
 use Drupal\Core\Form\FormStateInterface;
 use Drupal\Core\Session\AccountInterface;
 use Drupal\Core\Url;
-use Drupal\user\PrivateTempStoreFactory;
+use Drupal\Core\TempStore\PrivateTempStoreFactory;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 use Symfony\Component\HttpFoundation\RedirectResponse;
 
@@ -26,7 +26,7 @@
   /**
    * The tempstore object.
    *
-   * @var \Drupal\user\PrivateTempStore
+   * @var \Drupal\Core\TempStore\PrivateTempStore
    */
   protected $tempStore;
 
@@ -54,7 +54,7 @@
   /**
    * Constructs a DeleteMultiple form object.
    *
-   * @param \Drupal\user\PrivateTempStoreFactory $temp_store_factory
+   * @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory
    *   The tempstore factory.
    * @param \Drupal\Core\Entity\EntityTypeManagerInterface $manager
    *   The entity manager.
@@ -72,7 +72,7 @@
    */
   public static function create(ContainerInterface $container) {
     return new static(
-      $container->get('user.private_tempstore'),
+      $container->get('tempstore.private'),
       $container->get('entity_type.manager'),
       $container->get('current_user')
     );
Index: modules/bibcite_entity/src/Form/MergeMultipleForm.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- modules/bibcite_entity/src/Form/MergeMultipleForm.php	(revision 6701c623d7ff4ec145caea6e25c52879d6c77e98)
+++ modules/bibcite_entity/src/Form/MergeMultipleForm.php	(revision 7700754a2b6bb632a9bed1947b0ecf783fab26c0)
@@ -7,7 +7,7 @@
 use Drupal\Core\Form\FormStateInterface;
 use Drupal\Core\Session\AccountInterface;
 use Drupal\Core\Url;
-use Drupal\user\PrivateTempStoreFactory;
+use Drupal\Core\TempStore\PrivateTempStoreFactory;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
@@ -25,7 +25,7 @@
   /**
    * The tempstore object.
    *
-   * @var \Drupal\user\PrivateTempStore
+   * @var \Drupal\Core\TempStore\PrivateTempStore
    */
   protected $tempStore;
 
@@ -60,7 +60,7 @@
   /**
    * Constructs a DeleteMultiple form object.
    *
-   * @param \Drupal\user\PrivateTempStoreFactory $temp_store_factory
+   * @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory
    *   The tempstore factory.
    * @param \Drupal\Core\Entity\EntityTypeManagerInterface $manager
    *   The entity manager.
@@ -78,7 +78,7 @@
    */
   public static function create(ContainerInterface $container) {
     return new static(
-      $container->get('user.private_tempstore'),
+      $container->get('tempstore.private'),
       $container->get('entity_type.manager'),
       $container->get('current_user')
     );
Index: modules/bibcite_entity/src/Plugin/Action/EntityDeleteBase.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- modules/bibcite_entity/src/Plugin/Action/EntityDeleteBase.php	(revision 6701c623d7ff4ec145caea6e25c52879d6c77e98)
+++ modules/bibcite_entity/src/Plugin/Action/EntityDeleteBase.php	(revision 7700754a2b6bb632a9bed1947b0ecf783fab26c0)
@@ -5,7 +5,7 @@
 use Drupal\Core\Action\ActionBase;
 use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
 use Drupal\Core\Session\AccountInterface;
-use Drupal\user\PrivateTempStoreFactory;
+use Drupal\Core\TempStore\PrivateTempStoreFactory;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
@@ -16,7 +16,7 @@
   /**
    * The tempstore object.
    *
-   * @var \Drupal\user\PrivateTempStore
+   * @var \Drupal\Core\TempStore\PrivateTempStore
    */
   protected $tempStore;
 
@@ -36,7 +36,7 @@
    *   The plugin ID for the plugin instance.
    * @param mixed $plugin_definition
    *   The plugin implementation definition.
-   * @param \Drupal\user\PrivateTempStoreFactory $temp_store_factory
+   * @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory
    *   The tempstore factory.
    * @param \Drupal\Core\Session\AccountInterface $current_user
    *   Current user.
@@ -57,7 +57,7 @@
       $configuration,
       $plugin_id,
       $plugin_definition,
-      $container->get('user.private_tempstore'),
+      $container->get('tempstore.private'),
       $container->get('current_user')
     );
   }
Index: modules/bibcite_entity/src/Plugin/Action/EntityMergeBase.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- modules/bibcite_entity/src/Plugin/Action/EntityMergeBase.php	(revision 6701c623d7ff4ec145caea6e25c52879d6c77e98)
+++ modules/bibcite_entity/src/Plugin/Action/EntityMergeBase.php	(revision 7700754a2b6bb632a9bed1947b0ecf783fab26c0)
@@ -5,7 +5,7 @@
 use Drupal\Core\Action\ActionBase;
 use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
 use Drupal\Core\Session\AccountInterface;
-use Drupal\user\PrivateTempStoreFactory;
+use Drupal\Core\TempStore\PrivateTempStoreFactory;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
@@ -16,7 +16,7 @@
   /**
    * The tempstore object.
    *
-   * @var \Drupal\user\PrivateTempStore
+   * @var \Drupal\Core\TempStore\PrivateTempStore
    */
   protected $tempStore;
 
@@ -36,7 +36,7 @@
    *   The plugin ID for the plugin instance.
    * @param mixed $plugin_definition
    *   The plugin implementation definition.
-   * @param \Drupal\user\PrivateTempStoreFactory $temp_store_factory
+   * @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory
    *   The tempstore factory.
    * @param \Drupal\Core\Session\AccountInterface $current_user
    *   Current user.
@@ -56,7 +56,7 @@
       $configuration,
       $plugin_id,
       $plugin_definition,
-      $container->get('user.private_tempstore'),
+      $container->get('tempstore.private'),
       $container->get('current_user')
     );
   }
Index: modules/bibcite_export/bibcite_export.batch.inc
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- modules/bibcite_export/bibcite_export.batch.inc	(revision 6701c623d7ff4ec145caea6e25c52879d6c77e98)
+++ modules/bibcite_export/bibcite_export.batch.inc	(revision 7700754a2b6bb632a9bed1947b0ecf783fab26c0)
@@ -123,8 +123,8 @@
     /** @var \Drupal\bibcite\Plugin\BibciteFormatInterface $format */
     $format = $results['format'];
 
-    /** @var \Drupal\user\PrivateTempStore $tempstorage */
-    $tempstorage = \Drupal::service('user.private_tempstore')->get('bibcite_export');
+    /** @var \Drupal\Core\TempStore\PrivateTempStore $tempstorage */
+    $tempstorage = \Drupal::service('tempstore.private')->get('bibcite_export');
 
     $current_user = \Drupal::currentUser();
 
Index: modules/bibcite_export/src/Form/ExportAllForm.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- modules/bibcite_export/src/Form/ExportAllForm.php	(revision 6701c623d7ff4ec145caea6e25c52879d6c77e98)
+++ modules/bibcite_export/src/Form/ExportAllForm.php	(revision 7700754a2b6bb632a9bed1947b0ecf783fab26c0)
@@ -7,7 +7,7 @@
 use Drupal\Core\Form\FormStateInterface;
 use Drupal\Core\Url;
 use Drupal\file\Entity\File;
-use Drupal\user\PrivateTempStoreFactory;
+use Drupal\Core\TempStore\PrivateTempStoreFactory;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
@@ -18,7 +18,7 @@
   /**
    * Private temp store instance.
    *
-   * @var \Drupal\user\PrivateTempStore
+   * @var \Drupal\Core\TempStore\PrivateTempStore
    */
   protected $tempStorage;
 
@@ -42,7 +42,7 @@
    */
   public static function create(ContainerInterface $container) {
     return new static(
-      $container->get('user.private_tempstore'),
+      $container->get('tempstore.private'),
       $container->get('plugin.manager.bibcite_format')
     );
   }
Index: modules/bibcite_export/src/Form/ExportMultipleForm.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- modules/bibcite_export/src/Form/ExportMultipleForm.php	(revision 6701c623d7ff4ec145caea6e25c52879d6c77e98)
+++ modules/bibcite_export/src/Form/ExportMultipleForm.php	(revision 7700754a2b6bb632a9bed1947b0ecf783fab26c0)
@@ -7,7 +7,7 @@
 use Drupal\Core\Form\FormStateInterface;
 use Drupal\Core\Session\AccountInterface;
 use Drupal\Core\Url;
-use Drupal\user\PrivateTempStoreFactory;
+use Drupal\Core\TempStore\PrivateTempStoreFactory;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
@@ -25,7 +25,7 @@
   /**
    * The tempstore object.
    *
-   * @var \Drupal\user\PrivateTempStore
+   * @var \Drupal\Core\TempStore\PrivateTempStore
    */
   protected $tempStore;
 
@@ -46,7 +46,7 @@
   /**
    * Construct new ExportMultipleForm object.
    *
-   * @param \Drupal\user\PrivateTempStoreFactory $temp_store_factory
+   * @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory
    *   The tempstore factory.
    * @param \Drupal\bibcite\Plugin\BibciteFormatManagerInterface $format_manager
    *   The bibcite format manager.
@@ -64,7 +64,7 @@
    */
   public static function create(ContainerInterface $container) {
     return new static(
-      $container->get('user.private_tempstore'),
+      $container->get('tempstore.private'),
       $container->get('plugin.manager.bibcite_format'),
       $container->get('current_user')
     );
Index: modules/bibcite_export/src/Plugin/Action/ExportReference.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- modules/bibcite_export/src/Plugin/Action/ExportReference.php	(revision 6701c623d7ff4ec145caea6e25c52879d6c77e98)
+++ modules/bibcite_export/src/Plugin/Action/ExportReference.php	(revision 7700754a2b6bb632a9bed1947b0ecf783fab26c0)
@@ -5,7 +5,7 @@
 use Drupal\Core\Action\ActionBase;
 use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
 use Drupal\Core\Session\AccountInterface;
-use Drupal\user\PrivateTempStoreFactory;
+use Drupal\Core\TempStore\PrivateTempStoreFactory;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
@@ -23,7 +23,7 @@
   /**
    * The tempstore object.
    *
-   * @var \Drupal\user\PrivateTempStore
+   * @var \Drupal\Core\TempStore\PrivateTempStore
    */
   protected $tempStore;
 
@@ -43,7 +43,7 @@
    *   The plugin ID for the plugin instance.
    * @param mixed $plugin_definition
    *   The plugin implementation definition.
-   * @param \Drupal\user\PrivateTempStoreFactory $temp_store_factory
+   * @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory
    *   The tempstore factory.
    * @param \Drupal\Core\Session\AccountInterface $current_user
    *   Current user.
@@ -63,7 +63,7 @@
       $configuration,
       $plugin_id,
       $plugin_definition,
-      $container->get('user.private_tempstore'),
+      $container->get('tempstore.private'),
       $container->get('current_user')
     );
   }
Index: modules/bibcite_import/bibcite_import.module
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- modules/bibcite_import/bibcite_import.module	(revision 6701c623d7ff4ec145caea6e25c52879d6c77e98)
+++ modules/bibcite_import/bibcite_import.module	(revision 7700754a2b6bb632a9bed1947b0ecf783fab26c0)
@@ -15,8 +15,8 @@
  * Populate form values from tempstore.
  */
 function bibcite_import_bibcite_reference_prepare_form(ReferenceInterface $entity, $operation, FormStateInterface $form_state) {
-  /** @var \Drupal\user\PrivateTempStore $temp_storage */
-  $temp_storage = \Drupal::service('user.private_tempstore')->get('bibcite_entity_populate');
+  /** @var \Drupal\Core\TempStore\PrivateTempStore $temp_storage */
+  $temp_storage = \Drupal::service('tempstore.private')->get('bibcite_entity_populate');
   $current_user_id = \Drupal::currentUser()->id();
   $populated_entity = $temp_storage->get($current_user_id);
   if ($populated_entity && $populated_entity instanceof ReferenceInterface) {
Index: modules/bibcite_import/src/Form/PopulateForm.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- modules/bibcite_import/src/Form/PopulateForm.php	(revision 6701c623d7ff4ec145caea6e25c52879d6c77e98)
+++ modules/bibcite_import/src/Form/PopulateForm.php	(revision 7700754a2b6bb632a9bed1947b0ecf783fab26c0)
@@ -7,7 +7,7 @@
 use Drupal\Core\Form\FormBase;
 use Drupal\Core\Form\FormStateInterface;
 use Drupal\Core\Url;
-use Drupal\user\PrivateTempStore;
+use Drupal\Core\TempStore\PrivateTempStore;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 use Symfony\Component\Serializer\Serializer;
 
@@ -33,7 +33,7 @@
   /**
    * Module temp store.
    *
-   * @var \Drupal\user\PrivateTempStore
+   * @var \Drupal\Core\TempStore\PrivateTempStore
    */
   protected $tempStore;
 
@@ -44,7 +44,7 @@
    *   Serializer service.
    * @param \Drupal\bibcite\Plugin\BibciteFormatManagerInterface $format_manager
    *   Format manager service.
-   * @param \Drupal\user\PrivateTempStore $temp_store
+   * @param \Drupal\Core\TempStore\PrivateTempStore $temp_store
    *   Module temp store.
    */
   public function __construct(Serializer $serializer, BibciteFormatManagerInterface $format_manager, PrivateTempStore $temp_store) {
@@ -60,7 +60,7 @@
     return new static(
       $container->get('serializer'),
       $container->get('plugin.manager.bibcite_format'),
-      $container->get('user.private_tempstore')->get('bibcite_entity_populate')
+      $container->get('tempstore.private')->get('bibcite_entity_populate')
     );
   }
 
