GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 9f3915...092909 )
by Lukáš
02:06
created

VatRateApiCollectionModel   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 16
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getModelMap() 0 6 1
1
<?php
2
3
namespace Fousky\Component\iDoklad\Model\VatRates;
4
5
use Fousky\Component\iDoklad\Model\iDokladAbstractModel;
6
7
/**
8
 * @method null|VatRateApiModel[] getData()
9
 * @method null|int getTotalItems()
10
 * @method null|int getTotalPages()
11
 *
12
 * @author Lukáš Brzák <[email protected]>
13
 */
14
class VatRateApiCollectionModel extends iDokladAbstractModel
15
{
16
    public $Data;
17
    public $TotalItems;
18
    public $TotalPages;
19
20
    /**
21
     * @return array
22
     */
23
    public static function getModelMap(): array
24
    {
25
        return [
26
            'Data' => VatRateApiModel::class,
27
        ];
28
    }
29
}
30