Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| AnonymousUserSession | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\Core\Session\AnonymousUserSession. | |
| */ | |
| namespace Drupal\Core\Session; | |
| /** | |
| * An account implementation representing an anonymous user. | |
| */ | |
| class AnonymousUserSession extends UserSession { | |
| /** | |
| * Constructs a new anonymous user session. | |
| * | |
| * Intentionally don't allow parameters to be passed in like UserSession. | |
| */ | |
| public function __construct() { | |
| } | |
| } |