You are here

public function AttachmentsTrait::addAttachments in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Render/AttachmentsTrait.php \Drupal\Core\Render\AttachmentsTrait::addAttachments()
  2. 9 core/lib/Drupal/Core/Render/AttachmentsTrait.php \Drupal\Core\Render\AttachmentsTrait::addAttachments()

File

core/lib/Drupal/Core/Render/AttachmentsTrait.php, line 29

Class

AttachmentsTrait
Provides an implementation of AttachmentsInterface.

Namespace

Drupal\Core\Render

Code

public function addAttachments(array $attachments) {
  $this->attachments = BubbleableMetadata::mergeAttachments($this->attachments, $attachments);
  return $this;
}