ensure that plain CakeLogInterface still works

This commit is contained in:
Rachman Chavik 2012-05-13 15:53:42 +07:00
parent 8e8763d69d
commit 595cad84b3
3 changed files with 11 additions and 4 deletions
lib/Cake/Test/test_app/Plugin/TestPlugin/Lib/Log/Engine

View file

@ -17,9 +17,10 @@
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
App::uses('BaseLog', 'Log/Engine');
App::uses('CakeLogInterface', 'Log');
class TestPluginLog extends BaseLog {
class TestPluginLog implements CakeLogInterface
{
public function write($type, $message) {
}