Hello   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A filter() 0 7 2
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
Bug introduced by
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