Skip to content

Commit 8ef1e60

Browse files
authored
Update README.md
1 parent 28ce04a commit 8ef1e60

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# php-route
2+
23
Simple PHP Fast Routing for Small Web Application or Rest API .
34

45
### Features
6+
57
1. Easy Deployment
68
2. Fastest Routing
79
3. Parameter Supports
@@ -22,19 +24,19 @@ Simple PHP Fast Routing for Small Web Application or Rest API .
2224
That means, a route should be like
2325

2426
```php
25-
Route::get("/", function(){`
27+
Route::get("/", function(){
2628

2729
echo "This is home page";
2830

29-
`});
31+
});
3032
```
3133

3234
```php
33-
Route::get("contact", function(){`
35+
Route::get("contact", function(){
3436

3537
echo "This is contact page";
3638

37-
`});`
39+
});
3840

3941

4042
```

0 commit comments

Comments
 (0)