1<?php
2
3namespace MaxMind\WebService\Http;
4
5/**
6 * Class RequestFactory.
7 *
8 * @internal
9 */
10class RequestFactory
11{
12    public function __construct()
13    {
14    }
15
16    /**
17     * @param $url
18     * @param $options
19     *
20     * @return CurlRequest
21     */
22    public function request($url, $options)
23    {
24        return new CurlRequest($url, $options);
25    }
26}
27