PHP expert |
|
Hallo, ik heb de volgende methode:
public function addCommitment($iCommitmentID);
{
$this->aCommitments[] = $iCommitmentID;
return true;
}
public function addCommitment($iCommitmentID); { $this->aCommitments[] = $iCommitmentID; return true; }
met de volgende error:
Fatal error: Non-abstract method track::addCommitment() must contain body in c:\program....
Ik heb geen gebruik gemaakt van abstract of interface modellen.
Kan iemand me vooruit helpen?
|