Skip to content

Commit

Permalink
Added the @param comments
Browse files Browse the repository at this point in the history
Added the @param comments to all of the changed methods.
  • Loading branch information
jadedcore committed Oct 19, 2017
1 parent ac82547 commit 87b91e9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/TestSuite/IntegrationTestCase.php
Expand Up @@ -700,6 +700,7 @@ public function viewVariable($name)
/**
* Asserts that the response status code is in the 2xx range.
*
* @param string $message Custom message for failure.
* @return void
*/
public function assertResponseOk($message = null)
Expand All @@ -713,6 +714,7 @@ public function assertResponseOk($message = null)
/**
* Asserts that the response status code is in the 2xx/3xx range.
*
* @param string $message Custom message for failure.
* @return void
*/
public function assertResponseSuccess($message = null)
Expand All @@ -726,6 +728,7 @@ public function assertResponseSuccess($message = null)
/**
* Asserts that the response status code is in the 4xx range.
*
* @param string $message Custom message for failure.
* @return void
*/
public function assertResponseError($message = null)
Expand All @@ -739,6 +742,7 @@ public function assertResponseError($message = null)
/**
* Asserts that the response status code is in the 5xx range.
*
* @param string $message Custom message for failure.
* @return void
*/
public function assertResponseFailure($message = null)
Expand All @@ -753,6 +757,7 @@ public function assertResponseFailure($message = null)
* Asserts a specific response status code.
*
* @param int $code Status code to assert.
* @param string $message Custom message for failure.
* @return void
*/
public function assertResponseCode($code, $message = null)
Expand Down

0 comments on commit 87b91e9

Please sign in to comment.