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 ( 8188fa...e2d4ee )
by Kivanio
03:00
created

Extra   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 6
ccs 3
cts 3
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A userinfo() 0 4 1
1
<?php
2
3
namespace BoletoSimples;
4
5
class Extra {
6 1
  public static function userinfo() {
7 1
    $response = BaseResource::sendRequest('GET', 'userinfo');
0 ignored issues
show
Bug introduced by
The method sendRequest() does not exist on BoletoSimples\BaseResource. Did you maybe mean _sendRequest()?

This check marks calls to methods that do not seem to exist on an object.

This is most likely the result of a method being renamed without all references to it being renamed likewise.

Loading history...
8 1
    return $response->json();
9
  }
10
}