Esempio n. 1
0
 /**
  * Sets the string representation of the duration value
  *
  * @param string $text The duration as text.
  *
  * @throws \Ivory\GoogleMap\Exception\ServiceException If the text is not valid.
  */
 public function setText($text)
 {
     if (!is_string($text)) {
         throw ServiceException::invalidDurationText();
     }
     $this->text = $text;
 }