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.

Issues (3647)

symphony/content/content.logout.php (2 issues)

1
<?php
2
/**
3
 * @package content
4
 */
5
/**
6
 * The default Logout page will redirect the user
7
 * to the Homepage of `URL`
8
 */
9
class contentLogout extends HTMLPage
0 ignored issues
show
This class is not in CamelCase format.

Classes in PHP are usually named in CamelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. The whole name starts with a capital letter as well.

Thus the name database provider becomes DatabaseProvider.

Loading history...
10
{
11
    public function build()
12
    {
13
        $this->view();
14
    }
15
16
    public function view()
17
    {
18
        Administration::instance()->logout();
19
        redirect(URL);
0 ignored issues
show
The constant URL was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
20
    }
21
}
22