CS
This commit is contained in:
parent
44a65eddac
commit
39dfe3f1ac
1 changed files with 6 additions and 5 deletions
|
@ -164,17 +164,18 @@ class TestBaseApi extends TestBase
|
||||||
*
|
*
|
||||||
* Useful for testing HTML pages or ajax URLs.
|
* Useful for testing HTML pages or ajax URLs.
|
||||||
*
|
*
|
||||||
* @param string $urlSuffix Suffix for the URL
|
* @param string $urlSuffix Suffix for the URL
|
||||||
* @param mixed $auth If user authentication is needed (true/false)
|
* @param mixed $auth If user authentication is needed (true/false)
|
||||||
* or array with username and password
|
* or array with username and password
|
||||||
* @param boolean $privateKey True if to add user with private key
|
* @param boolean $privateKey True if to add user with private key
|
||||||
*
|
*
|
||||||
* @return array(HTTP_Request2, integer) HTTP request object and user id
|
* @return array(HTTP_Request2, integer) HTTP request object and user id
|
||||||
*
|
*
|
||||||
* @uses getRequest()
|
* @uses getRequest()
|
||||||
*/
|
*/
|
||||||
protected function getLoggedInRequest($urlSuffix = null, $auth = true, $privateKey = false)
|
protected function getLoggedInRequest(
|
||||||
{
|
$urlSuffix = null, $auth = true, $privateKey = false
|
||||||
|
) {
|
||||||
if (is_array($auth)) {
|
if (is_array($auth)) {
|
||||||
list($username, $password) = $auth;
|
list($username, $password) = $auth;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue