Extends
lithium\core\Object
Magic method to handle other HTTP methods.
Parameters
- string $method
- string $params
Returns
void @author gwooSource
public function __call($method, $params = array()) {
array_unshift($params, $method);
return $this->invokeMethod('send', $params);
}