namespace Symfony\Component\HttpFoundation\Session\Storage\Handler
Object name | File name | Summary |
---|---|---|
AbstractSessionHandler | vendor/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php | This abstract session handler provides a generic implementation of the PHP 7.0 SessionUpdateTimestampHandlerInterface, enabling strict and lazy session handling. |
IdentityMarshaller | vendor/symfony/http-foundation/Session/Storage/Handler/IdentityMarshaller.php | @author Ahmed TAILOULOUTE <ahmed.tailouloute@gmail.com> |
MarshallingSessionHandler | vendor/symfony/http-foundation/Session/Storage/Handler/MarshallingSessionHandler.php | @author Ahmed TAILOULOUTE <ahmed.tailouloute@gmail.com> |
MemcachedSessionHandler | vendor/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php | Memcached based session storage handler based on the Memcached class provided by the PHP memcached extension. |
MigratingSessionHandler | vendor/symfony/http-foundation/Session/Storage/Handler/MigratingSessionHandler.php | Migrating session handler for migrating from one handler to another. It reads from the current handler and writes both the current and new ones. |
MongoDbSessionHandler | vendor/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php | Session handler using the MongoDB driver extension. |
NativeFileSessionHandler | vendor/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php | Native session handler using PHP's built in file storage. |
NullSessionHandler | vendor/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php | Can be used in unit testing or in a situations where persisted sessions are not desired. |
PdoSessionHandler | vendor/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php | Session handler using a PDO connection to read and write data. |
RedisSessionHandler | vendor/symfony/http-foundation/Session/Storage/Handler/RedisSessionHandler.php | Redis based session storage handler based on the Redis class provided by the PHP redis extension. |
SessionHandlerFactory | vendor/symfony/http-foundation/Session/Storage/Handler/SessionHandlerFactory.php | @author Nicolas Grekas <p@tchwork.com> |
StrictSessionHandler | vendor/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php | Adds basic `SessionUpdateTimestampHandlerInterface` behaviors to another `SessionHandlerInterface`. |