Facade::__callStatic PHP Method

__callStatic() public static method

Call a non-static method on the facade.
public static __callStatic ( string $method, array $parameters ) : mixed
$method string
$parameters array
return mixed
    public static function __callStatic($method, $parameters)
    {
        return call_user_func_array([resolve(static::containerKey()), $method], $parameters);
    }