* Finish task #36345.

This commit is contained in:
hufangzhou
2021-03-02 13:13:17 +08:00
parent a08371bff9
commit 772d3ef1d8
5 changed files with 21 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
*/
class bug extends control
{
public $products = array();
public $products = array();
public $projectID = 0;
+8
View File
@@ -13,6 +13,14 @@ class caselib extends control
{
public $products = array();
/**
* Construct function.
*
* @param string $moduleName
* @param string $methodName
* @access public
* @return void
*/
public function __construct($moduleName = '', $methodName = '')
{
parent::__construct($moduleName, $methodName);
+2 -1
View File
@@ -11,7 +11,8 @@
*/
class testcase extends control
{
public $products = array();
public $products = array();
public $projectID = 0;
/**
+8
View File
@@ -13,6 +13,14 @@ class testsuite extends control
{
public $products = array();
/**
* Construct function.
*
* @param string $moduleName
* @param string $methodName
* @access public
* @return void
*/
public function __construct($moduleName = '', $methodName = '')
{
parent::__construct($moduleName, $methodName);
+2 -1
View File
@@ -11,7 +11,8 @@
*/
class testtask extends control
{
public $products = array();
public $products = array();
public $projectID = 0;
/**