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.
Passed
Branch master (3aeb29)
by Rob
03:21
created

TestCase   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 2
Bugs 1 Features 0
Metric Value
eloc 2
dl 0
loc 12
rs 10
c 2
b 1
f 0
wmc 1
1
<?php
2
3
namespace RattfieldNz\SafeUrls\Tests;
4
5
use Orchestra\Testbench\TestCase as Orchestra;
6
use RattfieldNz\SafeUrls\SafeUrlsServiceProvider;
7
8
abstract class TestCase extends Orchestra
9
{
10
    /**
11
     * add the package provider.
12
     *
13
     * @param $app
14
     *
15
     * @return array
16
     */
17
    protected function getPackageProviders($app)
18
    {
19
        return [SafeUrlsServiceProvider::class];
20
    }
21
}
22