<?php
namespace ConcreteCoreSession;
use SymfonyComponentHttpFoundationSessionSession as SymfonySession;
/**
* Interface FactoryInterface
* An object that can create symfony sessions
*
* @package ConcreteCoreSession
*/
interface SessionFactoryInterface
{
/**
* Create a new symfony session object
* This method MUST NOT start the session
*
* @return SymfonySession
*/
public function createSession();
}