Ejemplo n.º 1
0
 /**
  * Get the un-processed message, without the parameters filled in
  *
  * @return string
  */
 public function getRawMessage()
 {
     return $this->phrase->getText();
 }
Ejemplo n.º 2
0
 /**
  * Test get text
  *
  * @return void
  */
 public function testGetText()
 {
     $text = 'some text';
     $phrase = new Phrase($text);
     $this->assertEquals($text, $phrase->getText());
 }