docblocks for url and urlPart variables
This commit is contained in:
parent
39dfe3f1ac
commit
5009535d34
1 changed files with 13 additions and 0 deletions
|
@ -24,7 +24,20 @@ require_once 'HTTP/Request2.php';
|
||||||
*/
|
*/
|
||||||
class TestBaseApi extends TestBase
|
class TestBaseApi extends TestBase
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Created from the configured host and the $urlPart.
|
||||||
|
* Should be used as base for all generated URLs
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
protected $url;
|
protected $url;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Part of the URL behind the configured host.
|
||||||
|
* Needs to be overwritten in each derived test case class.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
protected $urlPart = null;
|
protected $urlPart = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue