SimpleEmailServiceRequest::__construct PHP Method

__construct() public method

Constructor
public __construct ( string $ses, string $verb = 'GET' ) : void
$ses string The SimpleEmailService object making this request
$verb string HTTP verb
return void
    public function __construct($ses, $verb = 'GET')
    {
        $this->ses = $ses;
        $this->verb = $verb;
        $this->response = (object) array('body' => '', 'code' => 0, 'error' => false);
    }