15 lines
254 B
PHP
15 lines
254 B
PHP
<?php
|
|
|
|
namespace Illuminate\Session;
|
|
|
|
interface ExistenceAwareInterface
|
|
{
|
|
/**
|
|
* Set the existence state for the session.
|
|
*
|
|
* @param bool $value
|
|
* @return \SessionHandlerInterface
|
|
*/
|
|
public function setExists($value);
|
|
}
|