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 ( 304b32...b08880 )
by Lukáš
11s
created

ReceivedInvoiceApiCollectionModel::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\ReceivedInvoices;
4
5
use Fousky\Component\iDoklad\Model\iDokladAbstractModel;
6
7
/**
8
 * @method null|ReceivedInvoiceApiModel[] getData()
9
 * @method null|int getTotalItems()
10
 * @method null|int getTotalPages()
11
 *
12
 * @author Jan Gula
13
 */
14
class ReceivedInvoiceApiCollectionModel extends iDokladAbstractModel
15
{
16
    public $Data;
17
18
    public $TotalItems;
19
20
    public $TotalPages;
21
22
    /**
23
     * @return array
24
     */
25
    public static function getModelMap(): array
26
    {
27
        return [
28
            'Data' => ReceivedInvoiceApiModel::class,
29
        ];
30
    }
31
}
32