AttachmentsTrait.php in Drupal 9
File
core/lib/Drupal/Core/Render/AttachmentsTrait.php
View source
<?php
namespace Drupal\Core\Render;
trait AttachmentsTrait {
protected $attachments = [];
public function getAttachments() {
return $this->attachments;
}
public function addAttachments(array $attachments) {
$this->attachments = BubbleableMetadata::mergeAttachments($this->attachments, $attachments);
return $this;
}
public function setAttachments(array $attachments) {
$this->attachments = $attachments;
return $this;
}
}