Issues (36)

app/Middleware/Hello.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: farizluqman
5
 * Date: 30/09/2017
6
 * Time: 3:38 PM.
7
 */
8
9
namespace Middleware;
10
11
use Response;
12
use Router;
0 ignored issues
show
The type Router was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
13
14
/**
15
 * Class Hello.
16
 */
17
class Hello
18
{
19
    public static function filter()
20
    {
21
        // Always redirect this route to /login
22
        if (Router::getCurrentRoute() == '/route/to/be/filtered') {
23
            Response::redirect('../../../login')->with([
24
                'login_message'=> 'This route have been filtered by the Hello middleware',
25
                'type'         => 'alert-warning',
26
            ]);
27
        }
28
    }
29
}
30