Skip to content

Commit

Permalink
Fix deprecation message for request->here usage.
Browse files Browse the repository at this point in the history
Closes #11977.
  • Loading branch information
ADmad committed Apr 22, 2018
1 parent d4bcd8b commit a2d5a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/ServerRequest.php
Expand Up @@ -233,7 +233,7 @@ class ServerRequest implements ArrayAccess, ServerRequestInterface
'url' => ['get' => 'getPath()', 'set' => 'withRequestTarget()'],
'base' => ['get' => 'getAttribute("base")', 'set' => 'withAttribute("base")'],
'webroot' => ['get' => 'getAttribute("webroot")', 'set' => 'withAttribute("webroot")'],
'here' => ['get' => 'getRequestTarget()', 'set' => 'withRequestTarget()'],
'here' => ['get' => 'getAttribute("here")', 'set' => 'withAttribute("here")'],
];

/**
Expand Down

0 comments on commit a2d5a5a

Please sign in to comment.