cakephp2-php8/lib/Cake/Test/test_app/Model/Datasource/Session/TestAppLibSession.php
2011-10-28 18:25:08 -04:00

31 lines
No EOL
376 B
PHP

<?php
/**
* Test suite app/Model/Datasource/Session session handler
*
*/
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) {
}
}