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

AbstractUrlAssertion::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 8
rs 9.4285
cc 1
eloc 5
nc 1
nop 2
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