SearchDataResponse   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 15
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getDaneSzukajResult() 0 3 1
A __construct() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace GusApi\Type\Response;
6
7
class SearchDataResponse
8
{
9
    /**
10
     * @param SearchResponseCompanyData[] $DaneSzukajResult
11
     */
12
    public function __construct(public array $DaneSzukajResult = [])
13
    {
14
    }
15
16
    /**
17
     * @return SearchResponseCompanyData[]
18
     */
19
    public function getDaneSzukajResult(): array
20
    {
21
        return $this->DaneSzukajResult;
22
    }
23
}
24