Swift_Mime_ContentEncoder_NativeQpContentEncoder::getName PHP Метод

getName() публичный Метод

Get the MIME name of this content encoding scheme.
public getName ( ) : string
Результат string
    public function getName()
    {
        return 'quoted-printable';
    }

Usage Example

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