From 1197ca154a90c1d446c8e855b51e32590e634d84 Mon Sep 17 00:00:00 2001 From: Alexis Saettler Date: Thu, 16 May 2019 18:16:15 +0200 Subject: [PATCH] fix: fix name route again (#12) --- routes/routes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routes/routes.php b/routes/routes.php index 9c489d7..6503e29 100644 --- a/routes/routes.php +++ b/routes/routes.php @@ -24,5 +24,5 @@ Router::$verbs = array_merge(Router::$verbs, $verbs); Route::any('{path?}', 'DAVController@init') - ->where('path', '(.)*') - ->name('sabre.dav'); + ->name('sabre.dav') + ->where('path', '(.)*');