mirror of
https://github.com/kuaifan/dootask.git
synced 2026-09-10 22:19:02 +00:00
15 lines
272 B
PHP
15 lines
272 B
PHP
<?php
|
|
|
|
namespace App\Services\WebDav;
|
|
|
|
use Sabre\HTTP\ResponseInterface;
|
|
use Sabre\HTTP\Sapi;
|
|
|
|
class WebDavSapi extends Sapi
|
|
{
|
|
public static function sendResponse(ResponseInterface $response)
|
|
{
|
|
// Symfony/Laravel owns the actual response emission.
|
|
}
|
|
}
|