summaryrefslogtreecommitdiffstats
path: root/Twilio/Tests/Request.php
blob: f53a037fe9b673ad1ac0bcfc3e7b34028f8d9010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php


namespace Twilio\Tests;

class Request {
    function __construct($method, $url, $params = array(), $data = array(), $headers = array(), $user = null, $password = null) {
        $this->method = $method;
        $this->url = $url;
        $this->params = $params;
        $this->data = $data;
        $this->headers = $headers;
        $this->user = $user;
        $this->password = $password;
    }
}