TestNetDnsSeeds   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 9
ccs 0
cts 8
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 7 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace BitWasp\Bitcoin\Networking\DnsSeeds;
6
7
class TestNetDnsSeeds extends DnsSeedList
8
{
9
    public function __construct()
10
    {
11
        parent::__construct([
12
            'testnet-seed.bitcoin.jonasschnelli.ch',
13
            'seed.tbtc.petertodd.org',
14
            'testnet-seed.bluematt.me',
15
            'testnet-seed.bitcoin.schildbach.de'
16
        ]);
17
    }
18
}
19