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

Breadcrumb

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

function Message::__clone

File

vendor/symfony/mime/Message.php, line 33

Class

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

Namespace

Symfony\Component\Mime

Code

public function __clone() {
    $this->headers = clone $this->headers;
    if (null !== $this->body) {
        $this->body = clone $this->body;
    }
}
RSS feed
Powered by Drupal