__toString() public method

String representation of a message.
public __toString ( ) : string
return string
Beispiel #1
0
 /**
  * Tests Message string representation.
  *
  * @return void
  */
 public function testMessageStringRepresentation()
 {
     $conn = new Connection();
     $msg = new Message('subject', 'body', 'sid', $conn);
     $this->assertEquals('body', $msg->__toString());
 }