cakephp2-php8/lib/Cake/Test/test_app/Model/Datasource/Session/TestAppLibSession.php
Marc Würth 1ede742d92 Various improvements to the CakePHP test files
Mostly CS, doc blocks and unused variables.
2015-09-25 17:22:00 +02:00

29 lines
442 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) {
}
}