Passed
Pull Request — 1.x (#3)
by Kevin
03:12 queued 01:14
created

HttpBrowserTest::browser()   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
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
namespace Zenstruck\Browser\Tests;
4
5
use Symfony\Component\Panther\PantherTestCase;
6
use Zenstruck\Browser\HttpBrowser;
7
8
/**
9
 * @author Kevin Bond <[email protected]>
10
 */
11
final class HttpBrowserTest extends PantherTestCase
12
{
13
    use BrowserKitBrowserTests;
14
15
    protected function browser(): HttpBrowser
16
    {
17
        return $this->httpBrowser();
18
    }
19
}
20