instanceNameOne; } //OOPHPInterfaceTwo has the function getNameTwo, // so we must implement it here. public function getNameTwo() { return $this->instanceNameTwo; } //OOPHPInterfaceOne has the function setNameOne, // so we must implement it here. public function setNameOne($nameIn) { $this->instanceNameOne = $nameIn; } //OOPHPInterfaceTwo has the function setNameTwo, // so we must implement it here. public function setNameTwo($nameIn) { $this->instanceNameTwo = $nameIn; } } ?>