Completed
Push — develop ( 48980c...453fcc )
by Marek
11:19
created

FunctionalHelper   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A followRedirects() 0 6 1
1
<?php
2
namespace AppBundle\Helper;
3
4
use Codeception\Module;
5
6
class FunctionalHelper extends Module
7
{
8
    public function followRedirects($followRedirect = true)
9
    {
10
        /** @var \Codeception\Module\Symfony $symfony */
11
        $symfony = $this->getModule('Symfony');
12
        $symfony->client->followRedirects($followRedirect);
13
    }
14
}
15