Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f07bf12

Browse files
committed
[Mime] added BodyRendererInterface
1 parent 19c6639 commit f07bf12

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Symfony\Component\Mime;
13+
14+
/**
15+
* @author Fabien Potencier <[email protected]>
16+
*
17+
* @experimental in 4.3
18+
*/
19+
interface BodyRendererInterface
20+
{
21+
public function render(Message $message): void;
22+
}

0 commit comments

Comments
 (0)