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.
Failed Conditions
Push — master ( 550dab...bc8237 )
by Casper
03:45 queued 02:01
created

UgcTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 7
c 2
b 0
f 0
dl 0
loc 12
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testUgcPushlogs() 0 10 1
1
<?php
2
3
namespace NStack\Tests;
4
5
class UgcTest extends TestCase
6
{
7
    public function testUgcPushlogs()
8
    {
9
        $mock = $this->getMockBuilder('UgcClient')
10
            ->setMethods(['storePushLog'])
11
            ->getMock();
12
13
        $mock->expects($this->once())
14
            ->method('storePushLog');
15
16
        $mock->storePushLog("fcm", "my fcm key", "standard", true);
17
    }
18
}
19