Completed
Push — master ( 80ef2e...65d1c9 )
by
unknown
58:18 queued 18:37
created

TestEmailOptions   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 24
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
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