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
Push — master ( 5a92a1...990cbe )
by Pascal
08:47
created

BrowserKitTestCase   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 3
eloc 6
dl 0
loc 29
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A createApplication() 0 3 1
A setResponse() 0 5 1
A setApp() 0 5 1
1
<?php
2
3
namespace ProtoneMedia\LaravelBrowserKitMacro;
4
5
use Illuminate\Foundation\Application;
6
use Illuminate\Http\Response;
7
use Laravel\BrowserKitTesting\TestCase;
8
9
class BrowserKitTestCase extends TestCase
10
{
11
    public function createApplication()
12
    {
13
        return;
14
    }
15
16
    /**
17
     * Set the Application.
18
     *
19
     * @var \Illuminate\Foundation\Application
20
     */
21
    public function setApp(Application $app)
22
    {
23
        $this->app = $app;
24
25
        return $this;
26
    }
27
28
    /**
29
     * Set the response returned by the request.
30
     *
31
     * @var \Illuminate\Http\Response
32
     */
33
    public function setResponse(Response $response)
34
    {
35
        $this->response = $response;
36
37
        return $this;
38
    }
39
}
40