Upgraded drupal core with security updates
[yaffs-website] / web / core / lib / Drupal / Core / Session / AnonymousUserSession.php
1 <?php
2
3 namespace Drupal\Core\Session;
4
5 /**
6  * An account implementation representing an anonymous user.
7  */
8 class AnonymousUserSession extends UserSession {
9
10   /**
11    * Constructs a new anonymous user session.
12    *
13    * Intentionally don't allow parameters to be passed in like UserSession.
14    */
15   public function __construct() {
16   }
17
18 }