Fixed mixed indents

This commit is contained in:
steampixel 2018-03-13 16:27:14 +01:00
parent 3a8218687f
commit bbffaef1ff

View File

@ -15,7 +15,7 @@ The second argument will match the request method. The default method is 'get'.
include('Route.php');
Route::add('/user/([0-9]*)/edit',function($id){
echo 'Edit user with id '.$id.'<br/>';
echo 'Edit user with id '.$id.'<br/>';
},'get');
Route::run('/');