Browse Source

replace Network with Http

saeid 7 years ago
parent
commit
56698ec023
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/Routing/Router.php
  2. 1 1
      tests/test_app/TestApp/Controller/PostsController.php

+ 1 - 1
src/Routing/Router.php

@@ -825,7 +825,7 @@ class Router
      * are used for CakePHP internals and should not normally be part of an output URL.
      *
      * @param \Cake\Http\ServerRequest|array $params The params array or
-     *     Cake\Network\Request object that needs to be reversed.
+     *     Cake\Http\ServerRequest object that needs to be reversed.
      * @param bool $full Set to true to include the full URL including the
      *     protocol when reversing the URL.
      * @return string The string that is the reversed result of the array

+ 1 - 1
tests/test_app/TestApp/Controller/PostsController.php

@@ -63,7 +63,7 @@ class PostsController extends AppController
     /**
      * Sets a flash message and redirects (no rendering)
      *
-     * @return \Cake\Network\Response
+     * @return \Cake\Http\Response
      */
     public function flashNoRender()
     {