You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: helpers.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2085,15 +2085,15 @@ The `uri` function generates a [fluent URI instance](#uri) for the given URI:
2085
2085
```php
2086
2086
$uri = uri('https://example.com')
2087
2087
->withPath('/users')
2088
-
->withQuery(['page' => 1])
2088
+
->withQuery(['page' => 1]);
2089
2089
```
2090
2090
2091
2091
If the `uri` function is given an array containing a callable controller and method pair, the function will create a `Uri` instance for the controller method's route path:
0 commit comments