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

Breadcrumb

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

function DataPart::asDebugString

Overrides TextPart::asDebugString

File

vendor/symfony/mime/Part/DataPart.php, line 107

Class

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

Namespace

Symfony\Component\Mime\Part

Code

public function asDebugString() : string {
    $str = parent::asDebugString();
    if (null !== $this->filename) {
        $str .= ' filename: ' . $this->filename;
    }
    return $str;
}
RSS feed
Powered by Drupal