proofdb/vendor/illuminate/session/ExistenceAwareInterface.php
2026-05-01 23:40:14 +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);
}