mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-03 22:47:45 +00:00
16 lines
344 B
PHP
16 lines
344 B
PHP
<?php
|
|
|
|
namespace Chill\DocStoreBundle\Dav\Response;
|
|
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
class DavResponse extends Response
|
|
{
|
|
public function __construct($content = '', int $status = 200, array $headers = [])
|
|
{
|
|
parent::__construct($content, $status, $headers);
|
|
|
|
$this->headers->add(['DAV' => '1']);
|
|
}
|
|
}
|