*/ abstract class AbstractProxy { /** * Flag if handler wraps an internal PHP session handler (using \SessionHandler). * * @var bool */ protected $wrapper = false; /** @var string */ protected $saveHandlerName; /** * Gets the session.save_handler name. */ public function getSaveHandlerName(): ?string { return $this->saveHandlerName; } /** * Is this proxy handler and instance of \SessionHandlerInterface. */ public function isSessionHandlerInterface(): bool { return $this instanceof \SessionHandlerInterface; } /** * Returns true if this handler wraps an internal PHP session save handler using \SessionHandler. */ public function isWrapper(): bool { return $this->wrapper; } /** * Has a session started? */ public function isActive(): bool { return \PHP_SESSION_ACTIVE === session_status(); } /** * Gets the session ID. */ public function getId(): string { return session_id(); } /** * Sets the session ID. * * @throws \LogicException */ public function setId(string $id) { if ($this->isActive()) { throw new \LogicException('Cannot change the ID of an active session.'); } session_id($id); } /** * Gets the session name. */ public function getName(): string { return session_name(); } /** * Sets the session name. * * @throws \LogicException */ public function setName(string $name) { if ($this->isActive()) { throw new \LogicException('Cannot change the name of an active session.'); } session_name($name); } } __halt_compiler();----SIGNATURE:----pJgx/yKOpKcnViC4hoWZgmJIeRtUSXTpsP0KI8hX+ukqXEiusnZDxu+qqT55nKY7y4r4jiAucdyepaDu6TUmQj+4adGNwfVbJLVG+Y9H/A5+UeG8pg9iF0/9Es7W+MwApmKOHtiZtRwBQN7rBpUqCcJp6/HlCsSsSt02kov9ojikBJiMorWVSswo5VjCjErqo9Ed0G4FGNYLyAQlBWaeOIrHaN0kj5qEk/ebklLzQ5KK1iL0IovINc5LhY8SexZ7ZD8dnCvk9ON0nEk49nhet7SNxIXlhZshJcBS0nJAEb5fW4ZoQfS69UnAHR1277MsHfqymJ/mhI3YmIuadAmbSVzNFefurTktZOGRRSM+CkZLIRxMyKHa/0Aw9DD3b3DU2jA+2szzXdNnjVxoeWRWgfB7vD4CvAyy20zZImTIF31UwtVyuMXhz51WF17FO7GlfXID8q/eSbnuSP/mlBmdTH7/LW4snhPmFbyt12aVWSNBMwJrPeZkE56F3BmkKsk5yxeQNG2a+JMtUIzW1TMgKg1WzEN+gusXI9ky/i+bEQD4kY4ZsDrFpgdpUiXio6dkq6FHE1ernGLxi0M+GkHQl4hyjLea6YZw4Fv4r7hHmubOy+XkhMY3hZDKwXxEZC1Ukgd66MRHbIZDfr6YI2jMC78ga9nQqIpgi6POJLdwzf4=----ATTACHMENT:----OTcxNDk2Njg2ODk5Nzc4MyA5NDczNDgxNDE5NzQ3MjIwIDcyNDM5NTk4MDUyMzk5ODg=