Просмотр файла vendor/laravel/framework/src/Illuminate/Session/ExistenceAwareInterface.php

Размер файла: 254B
<?php

namespace Illuminate\Session;

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