feat: vcard services for import/export (#1996)

Improve CardDAV with write functions
This commit is contained in:
Alexis Saettler
2018-11-11 16:24:52 +01:00
committed by GitHub
parent 566b0b1348
commit 6c8a8ea9a9
37 changed files with 2213 additions and 1494 deletions
@@ -0,0 +1,16 @@
<?php
namespace App\Http\Controllers\CardDAV;
use Sabre\HTTP\Sapi;
use Sabre\HTTP\ResponseInterface;
/**
* Mock version of SapiServer to avoid 'header()' calls.
*/
class SapiServerMock extends Sapi
{
public static function sendResponse(ResponseInterface $response)
{
}
}