From 542d4330e8175ea65adc93e45cfdedab246db62d Mon Sep 17 00:00:00 2001 From: SteamPixel Date: Thu, 14 Jan 2021 14:54:43 +0100 Subject: [PATCH] Added non english route example --- index.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.php b/index.php index 25219ce..7bff3a5 100644 --- a/index.php +++ b/index.php @@ -120,6 +120,11 @@ Route::add('/foo/bar/foo/bar', function() { echo 'This is the second match (This route should only work in multi match mode)
'; }); +// Route with non english letters +Route::add('/äöü', function() { + echo 'Non english letters should work too
'; +}); + // Trailing slash example Route::add('/aTrailingSlashDoesNotMatter', function() { navi();