Passed
Pull Request — master (#4)
by Cesar
02:54
created

Expired   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 15
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 3 1
1
<?php
2
3
namespace Pagantis\SeleniumFormUtils\Step\Result\Status;
4
5
use Pagantis\SeleniumFormUtils\Step\AbstractStep;
6
7
/**
8
 * Class Expired
9
 * @package Pagantis\SeleniumFormUtils\Step\Result\Status
10
 */
11
class Expired extends AbstractStep
12
{
13
    /**
14
     * Handler step
15
     */
16
    const STEP = '/result/status/expired';
17
18
    /**
19
     * Pass from confirm-data to next step in Application Form
20
     *
21
     * @throws \Exception
22
     */
23
    public function run()
24
    {
25
        $this->validateStep(self::STEP);
26
    }
27
}
28