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.

Account   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 27
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 1
cbo 1
dl 0
loc 27
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A details() 0 4 1
A authenticate() 0 4 1
1
<?php  namespace Rossedman\Teamwork; 
2
3
class Account extends AbstractObject {
4
5
    /**
6
     * Account Details
7
     * GET /account.json
8
     *
9
     * @link http://developer.teamwork.com/account
10
     * @return mixed
11
     */
12
    public function details()
13
    {
14
        return $this->client->get('account')->response();
15
    }
16
17
    /**
18
     * Authenticate Call
19
     * GET /authenticate.json
20
     *
21
     * @link http://developer.teamwork.com/account
22
     * @return mixed
23
     */
24
    public function authenticate()
25
    {
26
        return $this->client->get('authenticate')->response();
27
    }
28
29
}