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.
Passed
Pull Request — master (#152)
by Yong
04:09
created

Rpc::parameterPosition()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace AlibabaCloud\Client\Resolver;
4
5
use AlibabaCloud\Client\Request\RpcRequest;
6
7
/**
8
 * Class Rpc
9
 *
10
 * @internal
11
 * @codeCoverageIgnore
12
 * @package AlibabaCloud\Client\Resolver
13
 */
14
abstract class Rpc extends RpcRequest
15
{
16
    use ActionResolverTrait;
17
    use CallTrait;
18
19
    /**
20
     * @return mixed
21
     */
22
    private function &parameterPosition()
0 ignored issues
show
Unused Code introduced by
The method parameterPosition() is not used, and could be removed.

This check looks for private methods that have been defined, but are not used inside the class.

Loading history...
23
    {
24
        return $this->options['query'];
25
    }
26
}
27