/tests/lib/session/memory.php

https://github.com/sezuan/core · PHP · 16 lines · 7 code · 3 blank · 6 comment · 0 complexity · 600295fefe7d9afc9f2ccd7e82715c46 MD5 · raw file

  1. <?php
  2. /**
  3. * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
  4. * This file is licensed under the Affero General Public License version 3 or
  5. * later.
  6. * See the COPYING-README file.
  7. */
  8. namespace Test\Session;
  9. class Memory extends Session {
  10. public function setUp() {
  11. $this->instance = new \OC\Session\Memory(uniqid());
  12. }
  13. }