����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 216.73.216.82 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/public_html/vendor/sentry/sentry/src/Context/ |
Upload File : |
<?php declare(strict_types=1); namespace Sentry\Context; /** * This class is a specialized version of the base `Context` adapted to work * for the user context. * * @template-extends Context<mixed> */ final class UserContext extends Context { /** * Gets the ID of the user. */ public function getId(): ?string { return $this->data['id'] ?? null; } /** * Sets the ID of the user. * * @param string|null $id The ID */ public function setId(?string $id): void { $this->data['id'] = $id; } /** * Gets the username of the user. */ public function getUsername(): ?string { return $this->data['username'] ?? null; } /** * Sets the username of the user. * * @param string|null $username The username */ public function setUsername(?string $username): void { $this->data['username'] = $username; } /** * Gets the email of the user. */ public function getEmail(): ?string { return $this->data['email'] ?? null; } /** * Sets the email of the user. * * @param string|null $email The email */ public function setEmail(?string $email): void { $this->data['email'] = $email; } /** * Gets the ip address of the user. */ public function getIpAddress(): ?string { return $this->data['ip_address'] ?? null; } /** * Sets the ip address of the user. * * @param string|null $ipAddress The ip address */ public function setIpAddress(?string $ipAddress): void { $this->data['ip_address'] = $ipAddress; } }