Completed
Push — master ( 9033ab...337f95 )
by thomas
38:43
created

TestNetDnsSeeds   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 12
rs 10

1 Method

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