ConfirmResetPasswordView   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Mouf\Security\Password;
4
5
use Mouf\Html\HtmlElement\HtmlElementInterface;
6
use Mouf\Html\Renderer\Renderable;
7
8
class ConfirmResetPasswordView implements HtmlElementInterface
9
{
10
    use Renderable;
11
12
    /**
13
     * @var string
14
     */
15
    private $continueUrl;
16
17
    /**
18
     * ConfirmResetPasswordView constructor.
19
     *
20
     * @param string $continueUrl
21
     */
22
    public function __construct($continueUrl)
23
    {
24
        $this->continueUrl = $continueUrl;
25
    }
26
}
27