TestEmailOptions::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
namespace SfCod\EmailEngineBundle\Example;
4
5
use SfCod\EmailEngineBundle\Template\TemplateOptionsInterface;
6
7
/**
8
 * Class TestEmailOptions
9
 *
10
 * @author Virchenko Maksim <[email protected]>
11
 *
12
 * @package SfCod\EmailEngineBundle\Example
13
 */
14
class TestEmailOptions implements TemplateOptionsInterface
15
{
16
    /**
17
     * @var string
18
     */
19
    public $message;
20
21
    /**
22
     * @var string
23
     */
24
    public $filePath;
25
26
    /**
27
     * TestArguments constructor.
28
     *
29
     * @param string $message
30
     * @param string $filePath
31
     */
32
    public function __construct(string $message, string $filePath)
33
    {
34
        $this->message = $message;
35
        $this->filePath = $filePath;
36
    }
37
}
38