streams/vendor/sabre/dav/tests/Sabre/DAV/ClientMock.php

35 lines
529 B
PHP
Raw Normal View History

<?php
namespace Sabre\DAV;
use Sabre\HTTP\RequestInterface;
class ClientMock extends Client {
public $request;
public $response;
public $url;
public $curlSettings;
/**
* Just making this method public
*
* @param string $url
* @return string
*/
public function getAbsoluteUrl($url) {
return parent::getAbsoluteUrl($url);
}
public function doRequest(RequestInterface $request) {
$this->request = $request;
return $this->response;
}
}