| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/enoikio/core/modules/user/src/ |
Upload File : |
<?php
namespace Drupal\user;
use Drupal\Core\TempStore\SharedTempStore as CoreSharedTempStore;
@trigger_error('\Drupal\user\SharedTempStore is scheduled for removal in Drupal 9.0.0. Use \Drupal\Core\TempStore\SharedTempStore instead. See https://www.drupal.org/node/2935639.', E_USER_DEPRECATED);
/**
* In order to preserve BC alias the core exception.
*/
if (!class_exists('\Drupal\user\TempStoreException')) {
class_alias('\Drupal\Core\TempStore\TempStoreException', '\Drupal\user\TempStoreException');
}
/**
* Stores and retrieves temporary data for a given owner.
*
* @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0.
* Use \Drupal\Core\TempStore\SharedTempStore instead.
*
* @see \Drupal\Core\TempStore\SharedTempStore
* @see https://www.drupal.org/node/2935639
*/
class SharedTempStore extends CoreSharedTempStore {
}