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.

it_can_browse_settings_page()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 13
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 6
nc 1
nop 0
dl 0
loc 13
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
namespace Tests\Feature;
4
5
use Tests\Features\FeatureTestCase;
6
7
class SettingsControllerTest extends FeatureTestCase
8
{
9
    /**
10
     * A basic test example.
11
     *
12
     * @test
13
     *
14
     * @return void
15
     */
16
    public function it_can_browse_settings_page()
17
    {
18
        // Arrange
19
        $url = '/settings';
20
21
        // Act
22
        $this->ensureAuthenticated();
23
        $response = $this->get($url);
24
25
        // Assert
26
        $response->assertStatus(200)
27
            ->assertSee('Settings');
28
    }
29
}
30