From e85006060dd59cfd26abcdd4b37cd624cd438044 Mon Sep 17 00:00:00 2001 From: liugang Date: Thu, 21 Sep 2023 13:51:21 +0800 Subject: [PATCH] * testtask: remove unused paramter. --- module/testtask/control.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/module/testtask/control.php b/module/testtask/control.php index f87ad242c2..0a7dc0ad69 100644 --- a/module/testtask/control.php +++ b/module/testtask/control.php @@ -133,13 +133,11 @@ class testtask extends control } /** - * * 单元测试列表页面。 * Browse unit tasks. * * @param int $productID * @param string $browseType - * @param int $projectID * @param string $orderBy * @param int $recTotal * @param int $recPerPage @@ -147,7 +145,7 @@ class testtask extends control * @access public * @return void */ - public function browseUnits(int $productID = 0, string $browseType = 'newest', int $projectID = 0, string $orderBy = 'id_desc', int $recTotal = 0, int $recPerPage = 20, int $pageID = 1) + public function browseUnits(int $productID = 0, string $browseType = 'newest', string $orderBy = 'id_desc', int $recTotal = 0, int $recPerPage = 20, int $pageID = 1) { /* Save session. */ $this->session->set('testtaskList', $this->app->getURI(true), 'qa');