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.

Route   A
last analyzed

Complexity

Total Complexity 10

Size/Duplication

Total Lines 52
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

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

10 Methods

Rating   Name   Duplication   Size   Complexity  
A map() 0 4 1
A get() 0 4 1
A post() 0 4 1
A put() 0 4 1
A patch() 0 4 1
A delete() 0 4 1
A options() 0 4 1
A group() 0 4 1
A any() 0 4 1
A urlFor() 0 4 1
1
<?php
2
namespace Statical\SlimStatic;
3
4
class Route extends SlimSugar
5
{
6
    public static function map()
7
    {
8
    	return call_user_func_array(array(static::$slim, 'map'), func_get_args());
9
    }
10
11
    public static function get()
12
    {
13
    	return call_user_func_array(array(static::$slim, 'get'), func_get_args());
14
    }
15
16
    public static function post()
17
    {
18
    	return call_user_func_array(array(static::$slim, 'post'), func_get_args());
19
    }
20
21
    public static function put()
22
    {
23
    	return call_user_func_array(array(static::$slim, 'put'), func_get_args());
24
    }
25
26
    public static function patch()
27
    {
28
    	return call_user_func_array(array(static::$slim, 'patch'), func_get_args());
29
    }
30
31
    public static function delete()
32
    {
33
    	return call_user_func_array(array(static::$slim, 'delete'), func_get_args());
34
    }
35
36
    public static function options()
37
    {
38
    	return call_user_func_array(array(static::$slim, 'options'), func_get_args());
39
    }
40
41
    public static function group()
42
    {
43
    	return call_user_func_array(array(static::$slim, 'group'), func_get_args());
44
    }
45
46
    public static function any()
47
    {
48
    	return call_user_func_array(array(static::$slim, 'any'), func_get_args());
49
    }
50
51
    public static function urlFor()
52
    {
53
        return call_user_func_array(array(static::$slim, 'urlFor'), func_get_args());
54
    }
55
}
56