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.
Test Failed
Push — develop ( ec7d73...94d8a3 )
by Casper
02:08
created

tests/TestCase.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace NStack\Laravel\Tests;
4
5
use Illuminate\Support\Facades\Storage;
6
use NStack\Config;
7
use NStack\NStack;
8
9
class TestCase extends \PHPUnit\Framework\TestCase
10
{
11
    protected function mockStorage()
12
    {
13
        Storage::extend('mock', function () {
14
            return \Mockery::mock(\Illuminate\Contracts\Filesystem\Filesystem::class);
15
        });
16
17
        Config::set('filesystems.disks.mock', ['driver' => 'mock']);
18
        Config::set('filesystems.default', 'mock');
19
20
        return Storage::disk();
21
    }
22
23
    protected function mockNstack()
24
    {
25
        return new NStack()
26
    }
0 ignored issues
show
A parse error occurred: Syntax error, unexpected '}', expecting ';' on line 26 at column 4
Loading history...
27
}
28