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 ( 092909...4c4b08 )
by Lukáš
02:06
created

SalesOfficeApiCollectionModel::getModelMap()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace Fousky\Component\iDoklad\Model\SalesOffice;
4
5
use Fousky\Component\iDoklad\Model\iDokladAbstractModel;
6
7
/**
8
 * @method null|SalesOfficeApiModel[] getData()
9
 * @method null|int getTotalItems()
10
 * @method null|int getTotalPages()
11
 *
12
 * @author Lukáš Brzák <[email protected]>
13
 */
14
class SalesOfficeApiCollectionModel 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' => SalesOfficeApiModel::class,
27
        ];
28
    }
29
}
30