vd/vendor/illuminate/session/ExistenceAwareInterface.php
2018-11-05 09:26:30 +08:00

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);
}