12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;
- class NullSessionHandler extends AbstractSessionHandler
- {
- public function close(): bool
- {
- return true;
- }
- public function validateId(#[\SensitiveParameter] string $sessionId): bool
- {
- return true;
- }
- protected function doRead(#[\SensitiveParameter] string $sessionId): string
- {
- return '';
- }
- public function updateTimestamp(#[\SensitiveParameter] string $sessionId, string $data): bool
- {
- return true;
- }
- protected function doWrite(#[\SensitiveParameter] string $sessionId, string $data): bool
- {
- return true;
- }
- protected function doDestroy(#[\SensitiveParameter] string $sessionId): bool
- {
- return true;
- }
- public function gc(int $maxlifetime): int|false
- {
- return 0;
- }
- }
|