Skip to content

Commit

Permalink
Fix doc block in test.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Jan 20, 2017
1 parent 81a82c5 commit f9fbead
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions tests/test_app/TestApp/Controller/AuthTestController.php
Expand Up @@ -32,12 +32,16 @@ class AuthTestController extends Controller
/**
* testUrl property
*
* @var mixed
* @var string|array
*/
public $testUrl = null;

/**
* construct method
*
* @param \Cake\Http\ServerRequest|null $request Request object for this controller. Can be null for testing,
* but expect that features that use the request parameters will not work.
* @param \Cake\Network\Response|null $response Response object for this controller.
*/
public function __construct($request = null, $response = null)
{
Expand Down Expand Up @@ -99,9 +103,9 @@ public function camelCase()
/**
* redirect method
*
* @param mixed $url
* @param mixed $status
* @return void|\Cake\Network\Response
* @param string|array $url
* @param int $status
* @return \Cake\Network\Response|null
*/
public function redirect($url, $status = null)
{
Expand Down

0 comments on commit f9fbead

Please sign in to comment.