Completed
Pull Request — master (#94)
by Piotr
18:59
created

Mailer/TwigSwiftMessageFactory.php (1 issue)

Labels
Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/**
4
 * (c) FSi sp. z o.o. <[email protected]>
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
namespace FSi\Bundle\AdminSecurityBundle\Mailer;
11
12
use Symfony\Component\HttpFoundation\RequestStack;
13
use Twig_Environment;
14
15
class TwigSwiftMessageFactory implements SwiftMessageFactoryInterface
16
{
17
    /**
18
     * @var Twig_Environment
19
     */
20
    private $twig;
21
22
    /**
23
     * @var RequestStack
24
     */
25
    private $requestStack;
26
27
    public function __construct(
28
        Twig_Environment $twig,
29
        RequestStack $requestStack
30
    ) {
31
        $this->twig = $twig;
32
        $this->requestStack = $requestStack;
33
    }
34
35
    /**
36
     * @param string $email
37
     * @param string $template
38
     * @param array $data
39
     * @return \Swift_Message
40
     */
41
    public function createMessage($email, $template, array $data)
42
    {
43
        $masterRequest = $this->requestStack->getMasterRequest();
44
45
        if (!empty($masterRequest)) {
46
            $data['request'] = $masterRequest;
47
        }
48
49
        $templateContext = $this->twig->mergeGlobals($data);
50
51
        /** @var \Twig_Template $template */
52
        $template = $this->twig->loadTemplate($template);
53
        $subject = $template->renderBlock('subject', $templateContext);
54
        $htmlBody = $template->renderBlock('body_html', $templateContext);
55
        $message = \Swift_Message::newInstance()
0 ignored issues
show
The method newInstance() does not seem to exist on object<Swift_Message>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
56
            ->setSubject($subject)
57
            ->setTo($email);
58
59
        if (!empty($htmlBody)) {
60
            $message->setBody($htmlBody, 'text/html');
61
        }
62
63
        return $message;
64
    }
65
}
66