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
Push — master ( a66aaf...9db01e )
by Yong
03:49
created

Rpc   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A parameterPosition() 0 3 1
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