expatbase/var/www/html/flarum/vendor/illuminate/session/ExistenceAwareInterface.php
2025-08-29 00:22:05 +09:00

14 lines
254 B
PHP
Executable file

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