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 ( 5d8585...19996e )
by Alexander
85:54 queued 60:54
created

GenerateArticleImagesQuery::getClass()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
/**
3
 * LeadCommerce\Shopware\SDK\Query
4
 *
5
 * Copyright 2016 LeadCommerce
6
 *
7
 * @author Alexander Mahrt <[email protected]>
8
 * @copyright 2016 LeadCommerce <[email protected]>
9
 */
10
namespace LeadCommerce\Shopware\SDK\Query;
11
12
use LeadCommerce\Shopware\SDK\Util\Constants;
13
14
class GenerateArticleImagesQuery extends Base
15
{
16
    /**
17
     * @var array
18
     */
19
    protected $methodsAllowed = [
20
        Constants::METHOD_UPDATE,
21
    ];
22
23
    /**
24
     * Gets the class for the entities.
25
     *
26
     * @return string
27
     */
28
    protected function getClass()
29
    {
30
        return 'stdClass';
31
    }
32
33
    /**
34
     * Gets the query path to look for entities.
35
     * E.G: 'variants' or 'articles'
36
     *
37
     * @return string
38
     */
39
    protected function getQueryPath()
40
    {
41
        return 'generateArticleImages';
42
    }
43
}
44