deleteGoal() публичный Метод

Stats data in the archives will still be recorded, but not displayed.
public deleteGoal ( integer $idSite, integer $idGoal ) : void
$idSite integer
$idGoal integer
Результат void
Пример #1
0
 public function test_deleteGoal_shouldDeleteAGoal_IfGoalAndSiteMatches()
 {
     $this->assertHasNoGoals();
     $idGoal = $this->createAnyGoal();
     $this->assertHasGoals();
     $this->api->deleteGoal($this->idSite, $idGoal);
     $this->assertHasNoGoals();
 }