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 ( 572d49...2b02b3 )
by Lukáš
02:07
created

SalesPosEquipmentInfoModel::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\SalesPosEquipment;
4
5
use Fousky\Component\iDoklad\Model\iDokladAbstractModel;
6
use Fousky\Component\iDoklad\Model\NumericSequences\NumericSequenceApiModel;
7
8
/**
9
 * @method null|string getDesignation()
10
 * @method null|int getId()
11
 * @method null|string getName()
12
 * @method null|NumericSequenceApiModel getNumericSequence()
13
 * @method null|int getSalesOfficeId()
14
 *
15
 * @author Lukáš Brzák <[email protected]>
16
 */
17
class SalesPosEquipmentInfoModel extends iDokladAbstractModel
18
{
19
    public $Designation;
20
    public $Id;
21
    public $Name;
22
    public $NumericSequence;
23
    public $SalesOfficeId;
24
25
    /**
26
     * @return array
27
     */
28
    public static function getModelMap(): array
29
    {
30
        return [
31
            'NumericSequence' => NumericSequenceApiModel::class,
32
        ];
33
    }
34
}
35