Files
apimacro/vendor/laravel/framework/src/Illuminate/Session/ExistenceAwareInterface.php

15 lines
254 B
PHP
Raw Normal View History

2024-05-07 12:17:25 +02:00
<?php
namespace Illuminate\Session;
interface ExistenceAwareInterface
{
/**
* Set the existence state for the session.
*
* @param bool $value
* @return \SessionHandlerInterface
*/
public function setExists($value);
}