/**
  * @param string $text
  */
 public function __construct($path, array $options = null)
 {
     $this->setPath($path);
     parent::__construct($options);
 }
 /**
  * @param string $text
  */
 public function __construct($text, array $options = null)
 {
     $this->_text = $text;
     parent::__construct($options);
 }