Browse Source

Improve deprecation warning for Request::here()

mark_story 8 years ago
parent
commit
34eacb1455
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Http/ServerRequest.php

+ 1 - 1
src/Http/ServerRequest.php

@@ -957,7 +957,7 @@ class ServerRequest implements ArrayAccess, ServerRequestInterface
     public function here($base = true)
     {
         deprecationWarning(
-            'This method will be removed in 4.0.0. You should use getRequestTarget() instead.'
+            'ServerRequest::here() will be removed in 4.0.0. You should use getRequestTarget() instead.'
         );
 
         $url = $this->here;