Commit e714c0b4 authored by Shawn McCool's avatar Shawn McCool

Update laravel/helpers.php

fixed example code in docblock for url()
parent 436672c3
...@@ -316,10 +316,10 @@ function head($array) ...@@ -316,10 +316,10 @@ function head($array)
* *
* <code> * <code>
* // Create a URL to a location within the application * // Create a URL to a location within the application
* $url = path('user/profile'); * $url = url('user/profile');
* *
* // Create a HTTPS URL to a location within the application * // Create a HTTPS URL to a location within the application
* $url = path('user/profile', true); * $url = url('user/profile', true);
* </code> * </code>
* *
* @param string $url * @param string $url
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment