Swift_Mime_ContentEncoder_NativeQpContentEncoder::getName PHP Method

getName() public method

Get the MIME name of this content encoding scheme.
public getName ( ) : string
return string
    public function getName()
    {
        return 'quoted-printable';
    }

Usage Example

 public function testGetName()
 {
     $this->assertSame('quoted-printable', $this->_encoder->getName());
 }