githubtrue/backend/vendor/illuminate/session/ExistenceAwareInterface.php @ b50f8ebd
1 |
<?php
|
---|---|
2 |
|
3 |
namespace Illuminate\Session; |
4 |
|
5 |
interface ExistenceAwareInterface |
6 |
{
|
7 |
/**
|
8 |
* Set the existence state for the session.
|
9 |
*
|
10 |
* @param bool $value
|
11 |
* @return \SessionHandlerInterface
|
12 |
*/
|
13 |
public function setExists($value); |
14 |
}
|