aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/DAV/ClientMock.php
blob: d8b53a5a1287fd91dfca59f9e0db86631e75a1b5 (plain) (tree)
1
2
3
4
5
6
7
8
9



                    

                                

                                 
                    




                         











                                            






                                                          
 
<?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;

    }

}