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

Breadcrumb

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

function AbstractMultipartPart::__construct

Overrides AbstractPart::__construct

6 calls to AbstractMultipartPart::__construct()
DigestPart::__construct in vendor/symfony/mime/Part/Multipart/DigestPart.php
DigestPart::__construct in vendor/symfony/mime/Part/Multipart/DigestPart.php
FormDataPart::__construct in vendor/symfony/mime/Part/Multipart/FormDataPart.php
FormDataPart::__construct in vendor/symfony/mime/Part/Multipart/FormDataPart.php
RelatedPart::__construct in vendor/symfony/mime/Part/Multipart/RelatedPart.php

... See full list

3 methods override AbstractMultipartPart::__construct()
DigestPart::__construct in vendor/symfony/mime/Part/Multipart/DigestPart.php
FormDataPart::__construct in vendor/symfony/mime/Part/Multipart/FormDataPart.php
RelatedPart::__construct in vendor/symfony/mime/Part/Multipart/RelatedPart.php

File

vendor/symfony/mime/Part/AbstractMultipartPart.php, line 24

Class

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

Namespace

Symfony\Component\Mime\Part

Code

public function __construct(AbstractPart ...$parts) {
    parent::__construct();
    foreach ($parts as $part) {
        $this->parts[] = $part;
    }
}

API Navigation

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