Skip to content

Commit 83a6de5

Browse files
author
Milad Rahimi
authored
Update README.md
1 parent 1fbd206 commit 83a6de5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,16 +83,16 @@ $router = new Router();
8383
$router
8484
->get('/', function () {
8585
return '<b>GET method</b>';
86-
});
86+
})
8787
->post('/', function () {
8888
return '<b>POST method</b>';
89-
});
89+
})
9090
->patch('/', function () {
9191
return '<b>PATCH method</b>';
92-
});
92+
})
9393
->put('/', function () {
9494
return '<b>PUT method</b>';
95-
});
95+
})
9696
->delete('/', function () {
9797
return '<b>DELETE method</b>';
9898
})

0 commit comments

Comments
 (0)