Completed
Push — master ( 512ec2...ffd41a )
by Kevin
02:36
created

AbstractUrlAssertion   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 16
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 8 1
1
<?php
2
3
namespace Magium\Assertions\Url;
4
5
use Magium\AbstractTestCase;
6
use Magium\Assertions\SelectorAssertionInterface;
7
use Magium\WebDriver\WebDriver;
8
9
abstract class AbstractUrlAssertion implements SelectorAssertionInterface
10
{
11
12
    protected $webDriver;
13
    protected $testCase;
14
15
    public function __construct(
16
        WebDriver $webDriver,
17
        AbstractTestCase $testCase
18
    )
19
    {
20
        $this->webDriver = $webDriver;
21
        $this->testCase = $testCase;
22
    }
23
24
}
25