Passed
Pull Request — master (#38)
by Teye
05:43
created

UnionDataSource   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
eloc 6
c 0
b 0
f 0
dl 0
loc 25
ccs 5
cts 5
cp 1
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A toArray() 0 5 1
A __construct() 0 3 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Level23\Druid\DataSources;
5
6
class UnionDataSource implements DataSourceInterface
7
{
8
    /**
9
     * @var string[]
10
     */
11
    protected array $tableNames;
12
13
    /**
14
     * @param string[] $tableNames
15
     */
16 4
    public function __construct(array $tableNames)
17
    {
18 4
        $this->tableNames = $tableNames;
19
    }
20
21
    /**
22
     * Return the LookupDataSource so that it can be used in a druid query.
23
     *
24
     * @return array<string,string|string[]>
25
     */
26 2
    public function toArray(): array
27
    {
28
        return [
29 2
            'type'        => 'union',
30 2
            'dataSources' => $this->tableNames,
31
        ];
32
    }
33
}