Passed
Pull Request — master (#306)
by Tobias
02:05
created

FileGetContentsIntegrationTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A createHttpAdapter() 0 5 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Buzz\Test\Integration;
6
7
use Buzz\Client\FileGetContents;
8
9
class FileGetContentsIntegrationTest extends BaseIntegrationTest
10
{
11
    protected function createHttpAdapter()
12
    {
13
        $client = new FileGetContents();
14
15
        return $client;
16
    }
17
}
18