* * @param string $method * @param array $args * * @return mixed */ public static function __callStatic($method, $args) { return forward_static_call_array([BaseLog::class, $method], $args); } /** * Forward call. * * @author yansongda * * @param string $method * @param array $args * * @return mixed */ public function __call($method, $args) { return call_user_func_array([BaseLog::class, $method], $args); } }