Skip to content

Commit

Permalink
Fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tchapi committed Nov 27, 2023
1 parent 93176d1 commit 2012dcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/DAVController.php
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ public function dav(Request $request, string $path)

// Adapted from CorePlugin's httpOptions()
// https://github.com/sabre-io/dav/blob/master/lib/DAV/CorePlugin.php#L210
$methods = $this->server->getAllowedMethods("");
$methods = $this->server->getAllowedMethods('');

$response->headers->set('Allow', strtoupper(implode(', ', $methods)));
$features = ['1', '3', 'extended-mkcol'];
Expand Down

0 comments on commit 2012dcf

Please sign in to comment.