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

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

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