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 — rewrite-laravel ( eaffaa...c55a9d )
by Oliver
03:01
created

SettingsControllerTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 21
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A it_can_browse_settings_page() 0 12 1
1
<?php
2
3
namespace Tests\Feature;
4
5
6
use Tests\Features\TestCase;
7
8
class SettingsControllerTest extends TestCase
9
{
10
11
    /**
12
     * A basic test example.
13
     * @test
14
     * @return void
15
     */
16
    public function it_can_browse_settings_page()
17
    {
18
        // Arrange
19
        $url = '/settings';
20
21
        // Act
22
        $response = $this->get($url);
23
24
        // Assert
25
        $response->assertStatus(200)
26
            ->assertSee("Settings");
27
    }
28
}
29