cakephp2-php8/lib/Cake/Test/test_app/Model/Datasource/Session/TestAppLibSession.php
2012-03-17 23:53:13 -04:00

30 lines
445 B
PHP

<?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) {
}
}