Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
NullUser.php
1<?php
2
4
5class NullUser extends User
6{
7
8 public function getId(): ?int
9 {
10 return null;
11 }
12
13 public function isOnlineDataFilled(bool $withStatus): bool
14 {
15 return true;
16 }
17
18 protected function checkAccessWithoutCaching(User $otherUser): bool
19 {
20 return false;
21 }
22
23 public function isExist(): bool
24 {
25 return false;
26 }
27
28 public function isActive(): bool
29 {
30 return false;
31 }
32}
checkAccessWithoutCaching(User $otherUser)
Definition NullUser.php:18
isOnlineDataFilled(bool $withStatus)
Definition NullUser.php:13