docblocks for url and urlPart variables

This commit is contained in:
Christian Weiske 2011-06-08 07:21:33 +02:00
parent 39dfe3f1ac
commit 5009535d34

View file

@ -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;
/** /**