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

Approved::run()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Pagantis\SeleniumFormUtils\Step\Result\Status;
4
5
use Pagantis\SeleniumFormUtils\Step\AbstractStep;
6
7
/**
8
 * Class Approved
9
 * @package Pagantis\SeleniumFormUtils\Step\Result\Status
10
 */
11
class Approved extends AbstractStep
12
{
13
    /**
14
     * Handler step
15
     */
16
    const STEP = '/result/status/approved';
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