Update laravel/helpers.php
fixed example code in docblock for url()
This commit is contained in:
parent
436672c33c
commit
e714c0b487
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue