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
Pull Request — develop (#1)
by Gavin
02:42
created

SimpleFields   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 0
cbo 0
dl 0
loc 16
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFields() 0 10 1
1
<?php
2
3
namespace JumpCloud\System;
4
5
use JumpCloud\Fields\FieldsInterface;
6
7
class SimpleFields implements FieldsInterface
8
{
9
    /**
10
     * @inheritdoc
11
     */
12
    public function getFields()
13
    {
14
        return [
15
            'created',
16
            'hostname',
17
            'displayName',
18
            'remoteIP',
19
            'active'
20
        ];
21
    }
22
}
23