sserg82

Results 1 issues of sserg82

Hello, I have this route: ```php Flight::route('/test',function() { echo 'test'; }); Flight::route('*',function() { echo 'all'; }); ``` if i try to make a request like this: ```bash curl https://test.local/test?key1=%0A% all...