setAttribute('voice', $voice); } /** * Add Loop attribute. * * @param integer $loop Times to loop message * @return TwiML $this. */ public function setLoop($loop) { return $this->setAttribute('loop', $loop); } /** * Add Language attribute. * * @param say:Enum:Language $language Message langauge * @return TwiML $this. */ public function setLanguage($language) { return $this->setAttribute('language', $language); } }