Passed
Push — master ( 261523...fabbdf )
by Aleksei
21:35 queued 08:23
created

PreRender   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 1
dl 0
loc 6
ccs 0
cts 2
cp 0
rs 10
c 1
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Spiral\SendIt\Event;
6
7
use Spiral\Mailer\MessageInterface;
8
use Symfony\Component\Mime\Email;
9
use Symfony\Contracts\EventDispatcher\Event;
10
11
/**
12
 * Event triggered before the email content is rendered.
13
 *
14
 * This event allows you to modify the {@see Email} object (e.g., headers, body, or attachments)
15
 * before it is passed to the mailer for sending. The original {@see MessageInterface} is provided
16
 * for context but should not be modified.
17
 *
18
 * Example usage (listener):
19
 * ```
20
 * $dispatcher->addListener(PreRender::class, function (PreRender $event) {
21
 *     $event->email->addHeader('X-Custom', 'value');
22
 * });
23
 * ```
24
 */
25
final class PreRender extends Event
26
{
27
    public function __construct(
28
        public readonly MessageInterface $message,
29
        public readonly Email            $email,
30
    ) {}
31
}
32