10 lines
268 B
PHP
10 lines
268 B
PHP
|
<?php namespace MapGuesser\Interfaces\Session;
|
||
|
|
||
|
use SessionHandlerInterface;
|
||
|
use SessionIdInterface;
|
||
|
use SessionUpdateTimestampHandlerInterface;
|
||
|
|
||
|
interface ISessionHandler extends SessionHandlerInterface, SessionIdInterface, SessionUpdateTimestampHandlerInterface
|
||
|
{
|
||
|
}
|