File: TestAppLibSession.php

package info (click to toggle)
zoneminder 1.29.0%2Bdfsg-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 29,240 kB
  • sloc: php: 197,877; cpp: 35,980; perl: 16,099; sql: 1,912; sh: 1,831; makefile: 1,351; xml: 242; python: 33
file content (30 lines) | stat: -rw-r--r-- 445 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
 * Test suite app/Model/Datasource/Session session handler
 *
 */

App::uses('CakeSessionHandlerInterface', 'Model/Datasource/Session');

class TestAppLibSession implements CakeSessionHandlerInterface {

	public function open() {
		return true;
	}

	public function close() {
	}

	public function read($id) {
	}

	public function write($id, $data) {
	}

	public function destroy($id) {
	}

	public function gc($expires = null) {
	}

}