think\Log::__callStatic PHP 메소드

__callStatic() 공개 정적인 메소드

静态调用
public static __callStatic ( $method, $args ) : mixed
$method
$args
리턴 mixed
    public static function __callStatic($method, $args)
    {
        if (in_array($method, self::$type)) {
            array_push($args, $method);
            return call_user_func_array('\\think\\Log::record', $args);
        }
    }