diff --git a/src/Bridges/SecurityHttp/CookieIdentity.php b/src/Bridges/SecurityHttp/CookieIdentity.php new file mode 100644 index 00000000..78931af2 --- /dev/null +++ b/src/Bridges/SecurityHttp/CookieIdentity.php @@ -0,0 +1,51 @@ +uid = $uid; + } + + + public function getId(): string + { + return $this->uid; + } + + + public function getRoles(): array + { + throw new Nette\NotSupportedException; + } + + + public function getData(): array + { + throw new Nette\NotSupportedException; + } +}