formatAsString() public method

Format the value as a string.
public formatAsString ( ) : string
return string
 public function testToString()
 {
     $bytes = new Bytes($this->value);
     $expected = base64_encode($this->value);
     $this->assertEquals($expected, (string) $bytes);
     $this->assertEquals($expected, $bytes->formatAsString());
 }