Cleanup some whitespace.

This commit is contained in:
predominant 2010-04-05 16:43:47 +10:00
parent e0534a7a70
commit 5f2d091810

View file

@ -493,13 +493,11 @@ class Model extends Overloadable {
*/ */
public function __call($method, $params) { public function __call($method, $params) {
$result = $this->Behaviors->dispatchMethod($this, $method, $params); $result = $this->Behaviors->dispatchMethod($this, $method, $params);
if ($result !== array('unhandled')) { if ($result !== array('unhandled')) {
return $result; return $result;
} }
$db =& ConnectionManager::getDataSource($this->useDbConfig); $db =& ConnectionManager::getDataSource($this->useDbConfig);
$return = $db->query($method, $params, $this); $return = $db->query($method, $params, $this);
return $return; return $return;
} }