Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. TextPart.php

function TextPart::asDebugString

Overrides AbstractPart::asDebugString

2 calls to TextPart::asDebugString()
DataPart::asDebugString in vendor/symfony/mime/Part/DataPart.php
DataPart::asDebugString in vendor/symfony/mime/Part/DataPart.php
1 method overrides TextPart::asDebugString()
DataPart::asDebugString in vendor/symfony/mime/Part/DataPart.php

File

vendor/symfony/mime/Part/TextPart.php, line 193

Class

TextPart
@author Fabien Potencier <fabien@symfony.com>

Namespace

Symfony\Component\Mime\Part

Code

public function asDebugString() : string {
    $str = parent::asDebugString();
    if (null !== $this->charset) {
        $str .= ' charset: ' . $this->charset;
    }
    if (null !== $this->disposition) {
        $str .= ' disposition: ' . $this->disposition;
    }
    return $str;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal