/var/www/flurhymez/vendor/symfony/http-foundation/Session/Storage
NameSizeModeActions
Handler/-0755rm
Proxy/-0755rm
MetadataBag.php36750644editdlrm
MockArraySessionStorage.php50970644editdlrm
MockFileSessionStorage.php40100644editdlrm
MockFileSessionStorageFactory.php11240644editdlrm
NativeSessionStorage.php144590644editdlrm
NativeSessionStorageFactory.php13500644editdlrm
PhpBridgeSessionStorage.php14910644editdlrm
PhpBridgeSessionStorageFactory.php12680644editdlrm
ServiceSessionFactory.php9610644editdlrm
SessionStorageFactoryInterface.php6020644editdlrm
SessionStorageInterface.php38620644editdlrm
Edit: /var/www/flurhymez/vendor/symfony/http-foundation/Session/Storage/MockFileSessionStorageFactory.php (1124B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpFoundation\Session\Storage; use Symfony\Component\HttpFoundation\Request; // Help opcache.preload discover always-needed symbols class_exists(MockFileSessionStorage::class); /** * @author Jérémy Derussé */ class MockFileSessionStorageFactory implements SessionStorageFactoryInterface { private $savePath; private $name; private $metaBag; /** * @see MockFileSessionStorage constructor. */ public function __construct(string $savePath = null, string $name = 'MOCKSESSID', MetadataBag $metaBag = null) { $this->savePath = $savePath; $this->name = $name; $this->metaBag = $metaBag; } public function createStorage(?Request $request): SessionStorageInterface { return new MockFileSessionStorage($this->savePath, $this->name, $this->metaBag); } }