Projekt

Obecné

Profil

Stáhnout (254 Bajtů) Statistiky
| Větev: | Revize:
1 cb15593b Cajova-Houba
<?php
2
3
namespace Illuminate\Session;
4
5
interface ExistenceAwareInterface
6
{
7
    /**
8
     * Set the existence state for the session.
9
     *
10
     * @param  bool  $value
11
     * @return \SessionHandlerInterface
12
     */
13
    public function setExists($value);
14
}