ExistenceAwareInterface.php 254B

123456789101112131415
  1. <?php
  2. namespace Illuminate\Session;
  3. interface ExistenceAwareInterface
  4. {
  5. /**
  6. * Set the existence state for the session.
  7. *
  8. * @param bool $value
  9. * @return \SessionHandlerInterface
  10. */
  11. public function setExists($value);
  12. }