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::getFields()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 10
rs 9.4285
cc 1
eloc 7
nc 1
nop 0
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