TableDataSource::toArray()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
dl 0
loc 5
ccs 4
cts 4
cp 1
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 0
crap 1
1
<?php
2
declare(strict_types=1);
3
4
namespace Level23\Druid\DataSources;
5
6
class TableDataSource implements DataSourceInterface
7
{
8
    public string $dataSourceName;
9
10 353
    public function __construct(string $dataSourceName)
11
    {
12 353
        $this->dataSourceName = $dataSourceName;
13
    }
14
15
    /**
16
     * Return the TableDataSource so that it can be used in a druid query.
17
     *
18
     * @return array<string,string>
19
     */
20 17
    public function toArray(): array
21
    {
22 17
        return [
23 17
            'type' => 'table',
24 17
            'name' => $this->dataSourceName,
25 17
        ];
26
    }
27
}