Passed
Push — 1.x ( 0aa655...e60ed5 )
by Kevin
02:01
created

HttpBrowserTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
eloc 3
dl 0
loc 7
rs 10
c 2
b 0
f 1
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A browser() 0 3 1
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