Console
SessionTableCommand.php // 创建一个 session 表
Middleware
StartSession 在 中间件中随着应用启动
CommandsServiceProvider.php
SessionServiceProvider.php
SessionManager.php // 重要 ********
store.php // 实现了SessionInterface.php 和 Symfony\Component\HttpFoundation\Session\SessionInterface 接口
// 调用 时 ,将 接口注入 到 调用者的 __construct 方法中, 如 auth 的 Guard 类。
// 最重要的 **********
EncryptedStore.php
ExistenceAwareInterface.php // 在 DatabaseSessionHandler.php 和 Store.php 中 被实现或调用
CaheBasedSessionHandler.php
CookieSessionHandler.php
DatabaseSessionHandler.php
FileSessionHandler.php
TokenMismatchException.php