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.
Completed
Branch master (e39385)
by Romain
03:56
created

__TwigTemplate_398f8f56f7a75190ac0c4cefac17f525cd427ead086ca80c0ac47528545c2ce2   A

Complexity

Total Complexity 13

Size/Duplication

Total Lines 66
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 0
Metric Value
wmc 13
lcom 1
cbo 3
dl 0
loc 66
rs 10
c 0
b 0
f 0
1
<?php
2
3
/* index.twig */
4
class __TwigTemplate_398f8f56f7a75190ac0c4cefac17f525cd427ead086ca80c0ac47528545c2ce2 extends Twig_Template
5
{
6
    public function __construct(Twig_Environment $env)
7
    {
8
        parent::__construct($env);
9
10
        $this->blocks = array(
11
            'body_class' => array($this, 'block_body_class'),
12
        );
13
    }
14
15
    protected function doGetParent(array $context)
16
    {
17
        // line 7
18
        return $this->loadTemplate((isset($context["extension"]) || array_key_exists("extension", $context) ? $context["extension"] : (function () { throw new Twig_Error_Runtime('Variable "extension" does not exist.', 7, $this->getSourceContext()); })()), "index.twig", 7);
19
    }
20
21
    protected function doDisplay(array $context, array $blocks = array())
22
    {
23
        // line 1
24
        if ((isset($context["has_namespaces"]) || array_key_exists("has_namespaces", $context) ? $context["has_namespaces"] : (function () { throw new Twig_Error_Runtime('Variable "has_namespaces" does not exist.', 1, $this->getSourceContext()); })())) {
25
            // line 2
26
            $context["extension"] = "namespaces.twig";
27
        } else {
28
            // line 4
29
            $context["extension"] = "classes.twig";
30
        }
31
        // line 7
32
        $this->getParent($context)->display($context, array_merge($this->blocks, $blocks));
33
    }
34
35
    // line 9
36
    public function block_body_class($context, array $blocks = array())
37
    {
38
        echo "index";
39
    }
40
41
    public function getTemplateName()
42
    {
43
        return "index.twig";
44
    }
45
46
    public function isTraitable()
47
    {
48
        return false;
49
    }
50
51
    public function getDebugInfo()
52
    {
53
        return array (  36 => 9,  32 => 7,  29 => 4,  26 => 2,  24 => 1,  18 => 7,);
54
    }
55
56
    public function getSourceContext()
57
    {
58
        return new Twig_Source("{% if has_namespaces %}
59
    {% set extension = 'namespaces.twig' %}
60
{% else %}
61
    {% set extension = 'classes.twig' %}
62
{% endif %}
63
64
{% extends extension %}
65
66
{% block body_class 'index' %}
67
", "index.twig", "phar:///Users/bobby/Dropbox/Sites/OpenSource/Slackify/sami.phar/Sami/Resources/themes/default/index.twig");
68
    }
69
}
70