deleteGoal() public method

Stats data in the archives will still be recorded, but not displayed.
public deleteGoal ( integer $idSite, integer $idGoal ) : void
$idSite integer
$idGoal integer
return void
示例#1
0
文件: APITest.php 项目: cemo/piwik
 public function test_deleteGoal_shouldDeleteAGoal_IfGoalAndSiteMatches()
 {
     $this->assertHasNoGoals();
     $idGoal = $this->createAnyGoal();
     $this->assertHasGoals();
     $this->api->deleteGoal($this->idSite, $idGoal);
     $this->assertHasNoGoals();
 }