Browse Source

Edited readme.md via GitHub

Taylor Otwell 13 years ago
parent
commit
20a92ee123
1 changed files with 9 additions and 13 deletions
  1. 9 13
      readme.md

+ 9 - 13
readme.md

@@ -142,19 +142,15 @@ Unlike other PHP frameworks, Laravel places routes and their corresponding funct
 All you need to do is tell Laravel the request methods and URIs it should respond to. You define the behavior of the route using an anonymous method:
 
 ```php
-<?php
-
-return array(
-
-	'GET /home' => function()
-	{
-		// Handles GET requests to http://example.com/index.php/home
-	},
-
-	'PUT /user/update' => function()
-	{
-		// Handles PUT requests to http://example.com/index.php/user/update
-	}
+'GET /home' => function()
+{
+	// Handles GET requests to http://example.com/index.php/home
+},
+
+'PUT /user/update' => function()
+{
+	// Handles PUT requests to http://example.com/index.php/user/update
+}
 ```
 
 You can easily define a route to handle requests to more than one URI. Just use commas: