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.

SalePayment::getGUID()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * Part of Dear package.
5
 *
6
 * @package Dear
7
 * @version 1.0
8
 * @author Umair Mahmood
9
 * @license MIT
10
 * @copyright Copyright (c) 2019 Umair Mahmood
11
 *
12
 */
13
14
namespace UmiMood\Dear\Api;
15
16
use UmiMood\Dear\Api\Contracts\DeleteMethodAllowed as DeleteContract;
17
use UmiMood\Dear\Api\Contracts\PostMethodAllowed as PostContract;
18
use UmiMood\Dear\Api\Contracts\PutMethodAllowed as PutContract;
19
20
class SalePayment extends BaseApi implements PostContract, PutContract, DeleteContract
21
{
22
    protected function getGUID()
23
    {
24
        return "ID";
25
    }
26
27
    protected function getAction()
28
    {
29
        return 'sale/payment';
30
    }
31
}