FakeHttp::get()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 1
1
<?php
2
3
namespace Tests\Queryr\Replicator\Fixtures;
4
5
use Queryr\Replicator\EntitySource\Api\Http;
6
7
class FakeHttp extends Http {
8
9
	public function get( string $url ) {
10
		if ( $url === 'https://www.wikidata.org/w/api.php?action=wbgetentities&ids=Q1&format=json' ) {
11
			return file_get_contents( __DIR__ . '/../data/api/Q1.json' );
12
		}
13
		else {
14
			return false;
15
		}
16
	}
17
18
}