コード例 #1
0
 public function __call($method, $params)
 {
     if (method_exists($this->_mailer, $method)) {
         return call_user_func_array(array($this->_mailer, $method), $params);
     }
     return parent::__call($method, $params);
 }