Completed
Push — master ( 12db46...772506 )
by Alexey
12s
created

TestTemplateOptions::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 2
1
<?php
2
3
namespace SfCod\EmailEngineBundle\Example;
4
5
use SfCod\EmailEngineBundle\Template\TemplateOptionsInterface;
6
7
/**
8
 * Class TestArguments
9
 *
10
 * @author Virchenko Maksim <[email protected]>
11
 *
12
 * @package SfCod\EmailEngineBundle\Example
13
 */
14
class TestTemplateOptions 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