Files
sterivein/core/lib/Thelia/Database/NotORM.php
2012-12-21 15:03:26 +01:00

22 lines
357 B
PHP

<?php
namespace Thelia\Database;
class NotORM extends \NotORM
{
public function setCache(\NotORM_Cache $cache)
{
$this->cache = $cache;
}
public function setDebug($debug)
{
if(is_callable($debug))
{
$this->debug = $debug;
} else {
$this->debug = true;
}
}
}