コード例 #1
0
ファイル: Client.php プロジェクト: dzun91/yii2-extension-solr
 public function __call($name, $params)
 {
     if (method_exists($this->solr, $name)) {
         return call_user_func_array([$this->solr, $name], $params);
     }
     parent::call($name, $params);
     // We do this so we don't have to implement the exceptions ourselves
 }