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
Push — master ( c188f7...035d67 )
by Romain
05:21
created
src/Strime/Slackify/Webhooks/Webhook.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
             // Create an array with the valid values
74 74
             $valid_values = explode(",", self::SLACK_VALID_VALUES);
75 75
 
76
-            if(!in_array($key, $valid_values)) {
76
+            if (!in_array($key, $valid_values)) {
77 77
                 unset($values[$key]);
78 78
             }
79 79
             else {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         }
85 85
 
86 86
         // Check if a message has been defined
87
-        if(!isset($values["message"])) {
87
+        if (!isset($values["message"])) {
88 88
             throw new InvalidArgumentException("The message value is missing.");
89 89
         }
90 90
 
@@ -94,13 +94,13 @@  discard block
 block discarded – undo
94 94
         $values["message"] = str_replace('>', '>', $values["message"]);
95 95
 
96 96
         // Add the link to the message if needed.
97
-        if(isset($values["link"]) && ($values["link"] !== NULL)) {
97
+        if (isset($values["link"]) && ($values["link"] !== NULL)) {
98 98
             $values["message"] .= "\n";
99
-            $values["message"] .=  "<" . $values["link"]; 
100
-            if(isset($values["link_text"]) && ($values["link_text"] !== NULL)) {
101
-                $values["message"] .=  "|" . $values["link_text"];
99
+            $values["message"] .= "<" . $values["link"]; 
100
+            if (isset($values["link_text"]) && ($values["link_text"] !== NULL)) {
101
+                $values["message"] .= "|" . $values["link_text"];
102 102
             }
103
-            $values["message"] .=  ">" ;
103
+            $values["message"] .= ">";
104 104
         }
105 105
 
106 106
         // Set the parameters for the request
@@ -108,33 +108,33 @@  discard block
 block discarded – undo
108 108
             "text" => $values["message"]
109 109
         );
110 110
 
111
-        if(isset($values["channel"]) && ($values["channel"] !== NULL)) {
111
+        if (isset($values["channel"]) && ($values["channel"] !== NULL)) {
112 112
             $params["channel"] = $values["channel"];
113 113
         }
114 114
 
115
-        if(isset($values["icon"]) && ($values["icon"] !== NULL)) {
115
+        if (isset($values["icon"]) && ($values["icon"] !== NULL)) {
116 116
 
117 117
             // The icon may either be a URL or an emoji
118 118
             // We need to check the form of the string to know which parameter to choose.
119 119
             $icon_type = NULL;
120 120
 
121
-            if((strcmp(substr($values["icon"], 0, 1), ":") == 0) && (strcmp(substr($values["icon"], -1), ":") == 0)) {
121
+            if ((strcmp(substr($values["icon"], 0, 1), ":") == 0) && (strcmp(substr($values["icon"], -1), ":") == 0)) {
122 122
                 $icon_type = "emoji";
123 123
             }
124 124
             else {
125 125
                 $icon_type = "url";
126 126
             }
127 127
 
128
-            if($icon_type != NULL)
129
-                $params["icon_".$icon_type] = $values["icon"];
128
+            if ($icon_type != NULL)
129
+                $params["icon_" . $icon_type] = $values["icon"];
130 130
         }
131 131
 
132
-        if(isset($values["username"]) && ($values["username"] !== NULL)) {
132
+        if (isset($values["username"]) && ($values["username"] !== NULL)) {
133 133
             $params["username"] = $values["username"];
134 134
         }
135 135
 
136 136
         // Check if there are attachments to add to the request
137
-        if(is_array($this->attachments) && (count($this->attachments) > 0)) {
137
+        if (is_array($this->attachments) && (count($this->attachments) > 0)) {
138 138
             $params["attachments"] = $this->attachments;
139 139
         }
140 140
 
@@ -142,13 +142,13 @@  discard block
 block discarded – undo
142 142
         try {
143 143
             $client = new \GuzzleHttp\Client();
144 144
             $json_response = $client->request('POST', $this->url, [
145
-                'body' => json_encode( $params )
145
+                'body' => json_encode($params)
146 146
             ]);
147 147
             // $curl_status = $json_response->getStatusCode();
148 148
             // $response = json_decode( $json_response->getBody() );
149 149
         }
150
-        catch(RequestException $e) {
151
-            throw new RuntimeException('The request to the webhook failed: '.$e->getMessage(), $e->getCode(), $e);
150
+        catch (RequestException $e) {
151
+            throw new RuntimeException('The request to the webhook failed: ' . $e->getMessage(), $e->getCode(), $e);
152 152
         }
153 153
 
154 154
         // We re-initialize the attachments to prevent any conflict with a future message.
@@ -177,13 +177,13 @@  discard block
 block discarded – undo
177 177
             // Create an array with the valid values
178 178
             $valid_values = explode(",", self::SLACK_VALID_ATTACHMENTS);
179 179
 
180
-            if(!in_array($key, $valid_values)) {
180
+            if (!in_array($key, $valid_values)) {
181 181
                 unset($attachments[$key]);
182 182
             }
183 183
         }
184 184
 
185 185
         // Check if a message has been defined
186
-        if(!isset($attachments["fallback"], $attachments["fields"], $attachments["fields"]["title"])) {
186
+        if (!isset($attachments["fallback"], $attachments["fields"], $attachments["fields"]["title"])) {
187 187
             throw new InvalidArgumentException("Attachment fields are missing.");
188 188
         }
189 189
 
Please login to merge, or discard this patch.
ba/ba44a8c899bc710fea703ca481c3951eff8c02abd2c9f5096a5b16ff9243ffb8.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         foreach ($context['_seq'] as $context["_key"] => $context["letter"]) {
60 60
             // line 14
61 61
             echo "            ";
62
-            if ((twig_get_attribute($this->env, $this->getSourceContext(), ($context["items"] ?? null), $context["letter"], array(), "array", true, true) && (twig_length_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["items"]) || array_key_exists("items", $context) ? $context["items"] : (function () { throw new Twig_Error_Runtime('Variable "items" does not exist.', 14, $this->getSourceContext()); })()), $context["letter"], array(), "array")) > 1))) {
62
+            if ((twig_get_attribute($this->env, $this->getSourceContext(), ($context["items"] ?? null), $context["letter"], array(), "array", true, true) && (twig_length_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["items"]) || array_key_exists("items", $context) ? $context["items"] : (function() { throw new Twig_Error_Runtime('Variable "items" does not exist.', 14, $this->getSourceContext()); })()), $context["letter"], array(), "array")) > 1))) {
63 63
                 // line 15
64 64
                 echo "                <li><a href=\"#letter";
65 65
                 echo $context["letter"];
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     ";
89 89
         // line 22
90 90
         $context['_parent'] = $context;
91
-        $context['_seq'] = twig_ensure_traversable((isset($context["items"]) || array_key_exists("items", $context) ? $context["items"] : (function () { throw new Twig_Error_Runtime('Variable "items" does not exist.', 22, $this->getSourceContext()); })()));
91
+        $context['_seq'] = twig_ensure_traversable((isset($context["items"]) || array_key_exists("items", $context) ? $context["items"] : (function() { throw new Twig_Error_Runtime('Variable "items" does not exist.', 22, $this->getSourceContext()); })()));
92 92
         foreach ($context['_seq'] as $context["letter"] => $context["elements"]) {
93 93
             // line 23
94 94
             echo "<h2 id=\"letter";
@@ -106,42 +106,42 @@  discard block
 block discarded – undo
106 106
                 // line 27
107 107
                 $context["value"] = twig_get_attribute($this->env, $this->getSourceContext(), $context["element"], 1, array(), "array");
108 108
                 // line 28
109
-                if (("class" == (isset($context["type"]) || array_key_exists("type", $context) ? $context["type"] : (function () { throw new Twig_Error_Runtime('Variable "type" does not exist.', 28, $this->getSourceContext()); })()))) {
109
+                if (("class" == (isset($context["type"]) || array_key_exists("type", $context) ? $context["type"] : (function() { throw new Twig_Error_Runtime('Variable "type" does not exist.', 28, $this->getSourceContext()); })()))) {
110 110
                     // line 29
111 111
                     echo "<dt>";
112
-                    echo $context["__internal_351d30495b226f3f6aab1ed2b80d7044af729b76f061877fc02bc5b20e6949bc"]->macro_class_link((isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function () { throw new Twig_Error_Runtime('Variable "value" does not exist.', 29, $this->getSourceContext()); })()));
113
-                    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.', 29, $this->getSourceContext()); })())) {
112
+                    echo $context["__internal_351d30495b226f3f6aab1ed2b80d7044af729b76f061877fc02bc5b20e6949bc"]->macro_class_link((isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function() { throw new Twig_Error_Runtime('Variable "value" does not exist.', 29, $this->getSourceContext()); })()));
113
+                    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.', 29, $this->getSourceContext()); })())) {
114 114
                         echo " &mdash; <em>Class in namespace ";
115
-                        echo $context["__internal_351d30495b226f3f6aab1ed2b80d7044af729b76f061877fc02bc5b20e6949bc"]->macro_namespace_link(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function () { throw new Twig_Error_Runtime('Variable "value" does not exist.', 29, $this->getSourceContext()); })()), "namespace", array()));
115
+                        echo $context["__internal_351d30495b226f3f6aab1ed2b80d7044af729b76f061877fc02bc5b20e6949bc"]->macro_namespace_link(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function() { throw new Twig_Error_Runtime('Variable "value" does not exist.', 29, $this->getSourceContext()); })()), "namespace", array()));
116 116
                     }
117 117
                     echo "</em></dt>
118 118
                     <dd>";
119 119
                     // line 30
120
-                    echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function () { throw new Twig_Error_Runtime('Variable "value" does not exist.', 30, $this->getSourceContext()); })()), "shortdesc", array()), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function () { throw new Twig_Error_Runtime('Variable "value" does not exist.', 30, $this->getSourceContext()); })()));
120
+                    echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function() { throw new Twig_Error_Runtime('Variable "value" does not exist.', 30, $this->getSourceContext()); })()), "shortdesc", array()), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function() { throw new Twig_Error_Runtime('Variable "value" does not exist.', 30, $this->getSourceContext()); })()));
121 121
                     echo "</dd>";
122
-                } elseif (("method" ==                 // line 31
123
-(isset($context["type"]) || array_key_exists("type", $context) ? $context["type"] : (function () { throw new Twig_Error_Runtime('Variable "type" does not exist.', 31, $this->getSourceContext()); })()))) {
122
+                } elseif (("method" == // line 31
123
+(isset($context["type"]) || array_key_exists("type", $context) ? $context["type"] : (function() { throw new Twig_Error_Runtime('Variable "type" does not exist.', 31, $this->getSourceContext()); })()))) {
124 124
                     // line 32
125 125
                     echo "<dt>";
126
-                    echo $context["__internal_351d30495b226f3f6aab1ed2b80d7044af729b76f061877fc02bc5b20e6949bc"]->macro_method_link((isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function () { throw new Twig_Error_Runtime('Variable "value" does not exist.', 32, $this->getSourceContext()); })()));
126
+                    echo $context["__internal_351d30495b226f3f6aab1ed2b80d7044af729b76f061877fc02bc5b20e6949bc"]->macro_method_link((isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function() { throw new Twig_Error_Runtime('Variable "value" does not exist.', 32, $this->getSourceContext()); })()));
127 127
                     echo "() &mdash; <em>Method in class ";
128
-                    echo $context["__internal_351d30495b226f3f6aab1ed2b80d7044af729b76f061877fc02bc5b20e6949bc"]->macro_class_link(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function () { throw new Twig_Error_Runtime('Variable "value" does not exist.', 32, $this->getSourceContext()); })()), "class", array()));
128
+                    echo $context["__internal_351d30495b226f3f6aab1ed2b80d7044af729b76f061877fc02bc5b20e6949bc"]->macro_class_link(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function() { throw new Twig_Error_Runtime('Variable "value" does not exist.', 32, $this->getSourceContext()); })()), "class", array()));
129 129
                     echo "</em></dt>
130 130
                     <dd>";
131 131
                     // line 33
132
-                    echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function () { throw new Twig_Error_Runtime('Variable "value" does not exist.', 33, $this->getSourceContext()); })()), "shortdesc", array()), twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function () { throw new Twig_Error_Runtime('Variable "value" does not exist.', 33, $this->getSourceContext()); })()), "class", array()));
132
+                    echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function() { throw new Twig_Error_Runtime('Variable "value" does not exist.', 33, $this->getSourceContext()); })()), "shortdesc", array()), twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function() { throw new Twig_Error_Runtime('Variable "value" does not exist.', 33, $this->getSourceContext()); })()), "class", array()));
133 133
                     echo "</dd>";
134
-                } elseif (("property" ==                 // line 34
135
-(isset($context["type"]) || array_key_exists("type", $context) ? $context["type"] : (function () { throw new Twig_Error_Runtime('Variable "type" does not exist.', 34, $this->getSourceContext()); })()))) {
134
+                } elseif (("property" == // line 34
135
+(isset($context["type"]) || array_key_exists("type", $context) ? $context["type"] : (function() { throw new Twig_Error_Runtime('Variable "type" does not exist.', 34, $this->getSourceContext()); })()))) {
136 136
                     // line 35
137 137
                     echo "<dt>\$";
138
-                    echo $context["__internal_351d30495b226f3f6aab1ed2b80d7044af729b76f061877fc02bc5b20e6949bc"]->macro_property_link((isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function () { throw new Twig_Error_Runtime('Variable "value" does not exist.', 35, $this->getSourceContext()); })()));
138
+                    echo $context["__internal_351d30495b226f3f6aab1ed2b80d7044af729b76f061877fc02bc5b20e6949bc"]->macro_property_link((isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function() { throw new Twig_Error_Runtime('Variable "value" does not exist.', 35, $this->getSourceContext()); })()));
139 139
                     echo " &mdash; <em>Property in class ";
140
-                    echo $context["__internal_351d30495b226f3f6aab1ed2b80d7044af729b76f061877fc02bc5b20e6949bc"]->macro_class_link(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function () { throw new Twig_Error_Runtime('Variable "value" does not exist.', 35, $this->getSourceContext()); })()), "class", array()));
140
+                    echo $context["__internal_351d30495b226f3f6aab1ed2b80d7044af729b76f061877fc02bc5b20e6949bc"]->macro_class_link(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function() { throw new Twig_Error_Runtime('Variable "value" does not exist.', 35, $this->getSourceContext()); })()), "class", array()));
141 141
                     echo "</em></dt>
142 142
                     <dd>";
143 143
                     // line 36
144
-                    echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function () { throw new Twig_Error_Runtime('Variable "value" does not exist.', 36, $this->getSourceContext()); })()), "shortdesc", array()), twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function () { throw new Twig_Error_Runtime('Variable "value" does not exist.', 36, $this->getSourceContext()); })()), "class", array()));
144
+                    echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function() { throw new Twig_Error_Runtime('Variable "value" does not exist.', 36, $this->getSourceContext()); })()), "shortdesc", array()), twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["value"]) || array_key_exists("value", $context) ? $context["value"] : (function() { throw new Twig_Error_Runtime('Variable "value" does not exist.', 36, $this->getSourceContext()); })()), "class", array()));
145 145
                     echo "</dd>";
146 146
                 }
147 147
             }
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 
169 169
     public function getDebugInfo()
170 170
     {
171
-        return array (  152 => 39,  144 => 36,  137 => 35,  135 => 34,  132 => 33,  125 => 32,  123 => 31,  120 => 30,  111 => 29,  109 => 28,  107 => 27,  105 => 26,  101 => 25,  94 => 23,  90 => 22,  86 => 20,  80 => 19,  72 => 17,  64 => 15,  61 => 14,  57 => 13,  49 => 7,  46 => 6,  40 => 4,  33 => 3,  29 => 1,  27 => 2,  11 => 1,);
171
+        return array(152 => 39, 144 => 36, 137 => 35, 135 => 34, 132 => 33, 125 => 32, 123 => 31, 120 => 30, 111 => 29, 109 => 28, 107 => 27, 105 => 26, 101 => 25, 94 => 23, 90 => 22, 86 => 20, 80 => 19, 72 => 17, 64 => 15, 61 => 14, 57 => 13, 49 => 7, 46 => 6, 40 => 4, 33 => 3, 29 => 1, 27 => 2, 11 => 1,);
172 172
     }
173 173
 
174 174
     public function getSourceContext()
Please login to merge, or discard this patch.
c9/c989b66f6a5e33884a0d74d763893306217f033e75b6c60e99fd64872644425f.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     // line 3
35 35
     public function block_title($context, array $blocks = array())
36 36
     {
37
-        echo (isset($context["namespace"]) || array_key_exists("namespace", $context) ? $context["namespace"] : (function () { throw new Twig_Error_Runtime('Variable "namespace" does not exist.', 3, $this->getSourceContext()); })());
37
+        echo (isset($context["namespace"]) || array_key_exists("namespace", $context) ? $context["namespace"] : (function() { throw new Twig_Error_Runtime('Variable "namespace" does not exist.', 3, $this->getSourceContext()); })());
38 38
         echo " | ";
39 39
         $this->displayParentBlock("title", $context, $blocks);
40 40
     }
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     // line 5
49 49
     public function block_page_id($context, array $blocks = array())
50 50
     {
51
-        echo twig_escape_filter($this->env, ("namespace:" . twig_replace_filter((isset($context["namespace"]) || array_key_exists("namespace", $context) ? $context["namespace"] : (function () { throw new Twig_Error_Runtime('Variable "namespace" does not exist.', 5, $this->getSourceContext()); })()), array("\\" => "_"))), "html", null, true);
51
+        echo twig_escape_filter($this->env, ("namespace:" . twig_replace_filter((isset($context["namespace"]) || array_key_exists("namespace", $context) ? $context["namespace"] : (function() { throw new Twig_Error_Runtime('Variable "namespace" does not exist.', 5, $this->getSourceContext()); })()), array("\\" => "_"))), "html", null, true);
52 52
     }
53 53
 
54 54
     // line 7
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
             <li><span class=\"label label-default\">Namespace</span></li>
61 61
             ";
62 62
         // line 11
63
-        echo $context["__internal_084c0a9b4751f3912921b1f087047d19c4c1f20b347dd6cee5246a93c0cb9eed"]->macro_breadcrumbs((isset($context["namespace"]) || array_key_exists("namespace", $context) ? $context["namespace"] : (function () { throw new Twig_Error_Runtime('Variable "namespace" does not exist.', 11, $this->getSourceContext()); })()));
63
+        echo $context["__internal_084c0a9b4751f3912921b1f087047d19c4c1f20b347dd6cee5246a93c0cb9eed"]->macro_breadcrumbs((isset($context["namespace"]) || array_key_exists("namespace", $context) ? $context["namespace"] : (function() { throw new Twig_Error_Runtime('Variable "namespace" does not exist.', 11, $this->getSourceContext()); })()));
64 64
         echo "
65 65
         </ol>
66 66
     </div>
@@ -75,20 +75,20 @@  discard block
 block discarded – undo
75 75
     <div class=\"page-header\">
76 76
         <h1>";
77 77
         // line 19
78
-        echo (isset($context["namespace"]) || array_key_exists("namespace", $context) ? $context["namespace"] : (function () { throw new Twig_Error_Runtime('Variable "namespace" does not exist.', 19, $this->getSourceContext()); })());
78
+        echo (isset($context["namespace"]) || array_key_exists("namespace", $context) ? $context["namespace"] : (function() { throw new Twig_Error_Runtime('Variable "namespace" does not exist.', 19, $this->getSourceContext()); })());
79 79
         echo "</h1>
80 80
     </div>
81 81
 
82 82
     ";
83 83
         // line 22
84
-        if ((isset($context["subnamespaces"]) || array_key_exists("subnamespaces", $context) ? $context["subnamespaces"] : (function () { throw new Twig_Error_Runtime('Variable "subnamespaces" does not exist.', 22, $this->getSourceContext()); })())) {
84
+        if ((isset($context["subnamespaces"]) || array_key_exists("subnamespaces", $context) ? $context["subnamespaces"] : (function() { throw new Twig_Error_Runtime('Variable "subnamespaces" does not exist.', 22, $this->getSourceContext()); })())) {
85 85
             // line 23
86 86
             echo "        <h2>Namespaces</h2>
87 87
         <div class=\"namespace-list\">
88 88
             ";
89 89
             // line 25
90 90
             $context['_parent'] = $context;
91
-            $context['_seq'] = twig_ensure_traversable((isset($context["subnamespaces"]) || array_key_exists("subnamespaces", $context) ? $context["subnamespaces"] : (function () { throw new Twig_Error_Runtime('Variable "subnamespaces" does not exist.', 25, $this->getSourceContext()); })()));
91
+            $context['_seq'] = twig_ensure_traversable((isset($context["subnamespaces"]) || array_key_exists("subnamespaces", $context) ? $context["subnamespaces"] : (function() { throw new Twig_Error_Runtime('Variable "subnamespaces" does not exist.', 25, $this->getSourceContext()); })()));
92 92
             foreach ($context['_seq'] as $context["_key"] => $context["ns"]) {
93 93
                 echo $context["__internal_084c0a9b4751f3912921b1f087047d19c4c1f20b347dd6cee5246a93c0cb9eed"]->macro_namespace_link($context["ns"]);
94 94
             }
@@ -103,12 +103,12 @@  discard block
 block discarded – undo
103 103
         echo "
104 104
     ";
105 105
         // line 29
106
-        if ((isset($context["classes"]) || array_key_exists("classes", $context) ? $context["classes"] : (function () { throw new Twig_Error_Runtime('Variable "classes" does not exist.', 29, $this->getSourceContext()); })())) {
106
+        if ((isset($context["classes"]) || array_key_exists("classes", $context) ? $context["classes"] : (function() { throw new Twig_Error_Runtime('Variable "classes" does not exist.', 29, $this->getSourceContext()); })())) {
107 107
             // line 30
108 108
             echo "        <h2>Classes</h2>
109 109
         ";
110 110
             // line 31
111
-            echo $context["__internal_084c0a9b4751f3912921b1f087047d19c4c1f20b347dd6cee5246a93c0cb9eed"]->macro_render_classes((isset($context["classes"]) || array_key_exists("classes", $context) ? $context["classes"] : (function () { throw new Twig_Error_Runtime('Variable "classes" does not exist.', 31, $this->getSourceContext()); })()));
111
+            echo $context["__internal_084c0a9b4751f3912921b1f087047d19c4c1f20b347dd6cee5246a93c0cb9eed"]->macro_render_classes((isset($context["classes"]) || array_key_exists("classes", $context) ? $context["classes"] : (function() { throw new Twig_Error_Runtime('Variable "classes" does not exist.', 31, $this->getSourceContext()); })()));
112 112
             echo "
113 113
     ";
114 114
         }
@@ -116,12 +116,12 @@  discard block
 block discarded – undo
116 116
         echo "
117 117
     ";
118 118
         // line 34
119
-        if ((isset($context["interfaces"]) || array_key_exists("interfaces", $context) ? $context["interfaces"] : (function () { throw new Twig_Error_Runtime('Variable "interfaces" does not exist.', 34, $this->getSourceContext()); })())) {
119
+        if ((isset($context["interfaces"]) || array_key_exists("interfaces", $context) ? $context["interfaces"] : (function() { throw new Twig_Error_Runtime('Variable "interfaces" does not exist.', 34, $this->getSourceContext()); })())) {
120 120
             // line 35
121 121
             echo "        <h2>Interfaces</h2>
122 122
         ";
123 123
             // line 36
124
-            echo $context["__internal_084c0a9b4751f3912921b1f087047d19c4c1f20b347dd6cee5246a93c0cb9eed"]->macro_render_classes((isset($context["interfaces"]) || array_key_exists("interfaces", $context) ? $context["interfaces"] : (function () { throw new Twig_Error_Runtime('Variable "interfaces" does not exist.', 36, $this->getSourceContext()); })()));
124
+            echo $context["__internal_084c0a9b4751f3912921b1f087047d19c4c1f20b347dd6cee5246a93c0cb9eed"]->macro_render_classes((isset($context["interfaces"]) || array_key_exists("interfaces", $context) ? $context["interfaces"] : (function() { throw new Twig_Error_Runtime('Variable "interfaces" does not exist.', 36, $this->getSourceContext()); })()));
125 125
             echo "
126 126
     ";
127 127
         }
@@ -129,12 +129,12 @@  discard block
 block discarded – undo
129 129
         echo "
130 130
     ";
131 131
         // line 39
132
-        if ((isset($context["exceptions"]) || array_key_exists("exceptions", $context) ? $context["exceptions"] : (function () { throw new Twig_Error_Runtime('Variable "exceptions" does not exist.', 39, $this->getSourceContext()); })())) {
132
+        if ((isset($context["exceptions"]) || array_key_exists("exceptions", $context) ? $context["exceptions"] : (function() { throw new Twig_Error_Runtime('Variable "exceptions" does not exist.', 39, $this->getSourceContext()); })())) {
133 133
             // line 40
134 134
             echo "        <h2>Exceptions</h2>
135 135
         ";
136 136
             // line 41
137
-            echo $context["__internal_084c0a9b4751f3912921b1f087047d19c4c1f20b347dd6cee5246a93c0cb9eed"]->macro_render_classes((isset($context["exceptions"]) || array_key_exists("exceptions", $context) ? $context["exceptions"] : (function () { throw new Twig_Error_Runtime('Variable "exceptions" does not exist.', 41, $this->getSourceContext()); })()));
137
+            echo $context["__internal_084c0a9b4751f3912921b1f087047d19c4c1f20b347dd6cee5246a93c0cb9eed"]->macro_render_classes((isset($context["exceptions"]) || array_key_exists("exceptions", $context) ? $context["exceptions"] : (function() { throw new Twig_Error_Runtime('Variable "exceptions" does not exist.', 41, $this->getSourceContext()); })()));
138 138
             echo "
139 139
     ";
140 140
         }
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
 
156 156
     public function getDebugInfo()
157 157
     {
158
-        return array (  142 => 43,  137 => 41,  134 => 40,  132 => 39,  129 => 38,  124 => 36,  121 => 35,  119 => 34,  116 => 33,  111 => 31,  108 => 30,  106 => 29,  103 => 28,  99 => 26,  90 => 25,  86 => 23,  84 => 22,  78 => 19,  74 => 17,  71 => 16,  63 => 11,  58 => 8,  55 => 7,  49 => 5,  43 => 4,  35 => 3,  31 => 1,  29 => 2,  11 => 1,);
158
+        return array(142 => 43, 137 => 41, 134 => 40, 132 => 39, 129 => 38, 124 => 36, 121 => 35, 119 => 34, 116 => 33, 111 => 31, 108 => 30, 106 => 29, 103 => 28, 99 => 26, 90 => 25, 86 => 23, 84 => 22, 78 => 19, 74 => 17, 71 => 16, 63 => 11, 58 => 8, 55 => 7, 49 => 5, 43 => 4, 35 => 3, 31 => 1, 29 => 2, 11 => 1,);
159 159
     }
160 160
 
161 161
     public function getSourceContext()
Please login to merge, or discard this patch.
a4/a46b2869ba4e42cd458867549075bfd7aaab413c9632a5e19c097c291a1a02b4.php 1 patch
Spacing   +71 added lines, -71 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     // line 3
47 47
     public function block_title($context, array $blocks = array())
48 48
     {
49
-        echo (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 3, $this->getSourceContext()); })());
49
+        echo (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 3, $this->getSourceContext()); })());
50 50
         echo " | ";
51 51
         $this->displayParentBlock("title", $context, $blocks);
52 52
     }
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     // line 5
61 61
     public function block_page_id($context, array $blocks = array())
62 62
     {
63
-        echo twig_escape_filter($this->env, ("class:" . twig_replace_filter(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 5, $this->getSourceContext()); })()), "name", array()), array("\\" => "_"))), "html", null, true);
63
+        echo twig_escape_filter($this->env, ("class:" . twig_replace_filter(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 5, $this->getSourceContext()); })()), "name", array()), array("\\" => "_"))), "html", null, true);
64 64
     }
65 65
 
66 66
     // line 7
@@ -68,21 +68,21 @@  discard block
 block discarded – undo
68 68
     {
69 69
         // line 8
70 70
         echo "    ";
71
-        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 8, $this->getSourceContext()); })()), "namespace", array())) {
71
+        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 8, $this->getSourceContext()); })()), "namespace", array())) {
72 72
             // line 9
73 73
             echo "        <div class=\"namespace-breadcrumbs\">
74 74
             <ol class=\"breadcrumb\">
75 75
                 <li><span class=\"label label-default\">";
76 76
             // line 11
77
-            echo twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 11, $this->getSourceContext()); })()), "categoryName", array());
77
+            echo twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 11, $this->getSourceContext()); })()), "categoryName", array());
78 78
             echo "</span></li>
79 79
                 ";
80 80
             // line 12
81
-            echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_breadcrumbs(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 12, $this->getSourceContext()); })()), "namespace", array()));
81
+            echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_breadcrumbs(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 12, $this->getSourceContext()); })()), "namespace", array()));
82 82
             echo "
83 83
                 <li>";
84 84
             // line 13
85
-            echo twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 13, $this->getSourceContext()); })()), "shortname", array());
85
+            echo twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 13, $this->getSourceContext()); })()), "shortname", array());
86 86
             echo "</li>
87 87
             </ol>
88 88
         </div>
@@ -99,11 +99,11 @@  discard block
 block discarded – undo
99 99
         <h1>
100 100
             ";
101 101
         // line 23
102
-        echo twig_last($this->env, twig_split_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 23, $this->getSourceContext()); })()), "name", array()), "\\"));
102
+        echo twig_last($this->env, twig_split_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 23, $this->getSourceContext()); })()), "name", array()), "\\"));
103 103
         echo "
104 104
             ";
105 105
         // line 24
106
-        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_deprecated((isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 24, $this->getSourceContext()); })()));
106
+        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_deprecated((isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 24, $this->getSourceContext()); })()));
107 107
         echo "
108 108
         </h1>
109 109
     </div>
@@ -115,28 +115,28 @@  discard block
 block discarded – undo
115 115
 
116 116
     ";
117 117
         // line 30
118
-        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_deprecations((isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 30, $this->getSourceContext()); })()));
118
+        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_deprecations((isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 30, $this->getSourceContext()); })()));
119 119
         echo "
120 120
 
121 121
     ";
122 122
         // line 32
123
-        if ((twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 32, $this->getSourceContext()); })()), "shortdesc", array()) || twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 32, $this->getSourceContext()); })()), "longdesc", array()))) {
123
+        if ((twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 32, $this->getSourceContext()); })()), "shortdesc", array()) || twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 32, $this->getSourceContext()); })()), "longdesc", array()))) {
124 124
             // line 33
125 125
             echo "        <div class=\"description\">
126 126
             ";
127 127
             // line 34
128
-            if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 34, $this->getSourceContext()); })()), "shortdesc", array())) {
128
+            if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 34, $this->getSourceContext()); })()), "shortdesc", array())) {
129 129
                 // line 35
130 130
                 echo "<p>";
131
-                echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 35, $this->getSourceContext()); })()), "shortdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 35, $this->getSourceContext()); })()));
131
+                echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 35, $this->getSourceContext()); })()), "shortdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 35, $this->getSourceContext()); })()));
132 132
                 echo "</p>";
133 133
             }
134 134
             // line 37
135 135
             echo "            ";
136
-            if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 37, $this->getSourceContext()); })()), "longdesc", array())) {
136
+            if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 37, $this->getSourceContext()); })()), "longdesc", array())) {
137 137
                 // line 38
138 138
                 echo "<p>";
139
-                echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 38, $this->getSourceContext()); })()), "longdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 38, $this->getSourceContext()); })()));
139
+                echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 38, $this->getSourceContext()); })()), "longdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 38, $this->getSourceContext()); })()));
140 140
                 echo "</p>";
141 141
             }
142 142
             // line 40
@@ -147,13 +147,13 @@  discard block
 block discarded – undo
147 147
         echo "
148 148
     ";
149 149
         // line 43
150
-        if ((isset($context["traits"]) || array_key_exists("traits", $context) ? $context["traits"] : (function () { throw new Twig_Error_Runtime('Variable "traits" does not exist.', 43, $this->getSourceContext()); })())) {
150
+        if ((isset($context["traits"]) || array_key_exists("traits", $context) ? $context["traits"] : (function() { throw new Twig_Error_Runtime('Variable "traits" does not exist.', 43, $this->getSourceContext()); })())) {
151 151
             // line 44
152 152
             echo "        <h2>Traits</h2>
153 153
 
154 154
         ";
155 155
             // line 46
156
-            echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_render_classes((isset($context["traits"]) || array_key_exists("traits", $context) ? $context["traits"] : (function () { throw new Twig_Error_Runtime('Variable "traits" does not exist.', 46, $this->getSourceContext()); })()));
156
+            echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_render_classes((isset($context["traits"]) || array_key_exists("traits", $context) ? $context["traits"] : (function() { throw new Twig_Error_Runtime('Variable "traits" does not exist.', 46, $this->getSourceContext()); })()));
157 157
             echo "
158 158
     ";
159 159
         }
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
         echo "
162 162
     ";
163 163
         // line 49
164
-        if ((isset($context["constants"]) || array_key_exists("constants", $context) ? $context["constants"] : (function () { throw new Twig_Error_Runtime('Variable "constants" does not exist.', 49, $this->getSourceContext()); })())) {
164
+        if ((isset($context["constants"]) || array_key_exists("constants", $context) ? $context["constants"] : (function() { throw new Twig_Error_Runtime('Variable "constants" does not exist.', 49, $this->getSourceContext()); })())) {
165 165
             // line 50
166 166
             echo "        <h2>Constants</h2>
167 167
 
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
         echo "
176 176
     ";
177 177
         // line 55
178
-        if ((isset($context["properties"]) || array_key_exists("properties", $context) ? $context["properties"] : (function () { throw new Twig_Error_Runtime('Variable "properties" does not exist.', 55, $this->getSourceContext()); })())) {
178
+        if ((isset($context["properties"]) || array_key_exists("properties", $context) ? $context["properties"] : (function() { throw new Twig_Error_Runtime('Variable "properties" does not exist.', 55, $this->getSourceContext()); })())) {
179 179
             // line 56
180 180
             echo "        <h2>Properties</h2>
181 181
 
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
         echo "
190 190
     ";
191 191
         // line 61
192
-        if ((isset($context["methods"]) || array_key_exists("methods", $context) ? $context["methods"] : (function () { throw new Twig_Error_Runtime('Variable "methods" does not exist.', 61, $this->getSourceContext()); })())) {
192
+        if ((isset($context["methods"]) || array_key_exists("methods", $context) ? $context["methods"] : (function() { throw new Twig_Error_Runtime('Variable "methods" does not exist.', 61, $this->getSourceContext()); })())) {
193 193
             // line 62
194 194
             echo "        <h2>Methods</h2>
195 195
 
@@ -215,31 +215,31 @@  discard block
 block discarded – undo
215 215
     public function block_class_signature($context, array $blocks = array())
216 216
     {
217 217
         // line 74
218
-        if (( !twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 74, $this->getSourceContext()); })()), "interface", array()) && twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 74, $this->getSourceContext()); })()), "abstract", array()))) {
218
+        if ((!twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 74, $this->getSourceContext()); })()), "interface", array()) && twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 74, $this->getSourceContext()); })()), "abstract", array()))) {
219 219
             echo "abstract ";
220 220
         }
221 221
         // line 75
222 222
         echo "    ";
223
-        echo twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 75, $this->getSourceContext()); })()), "categoryName", array());
223
+        echo twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 75, $this->getSourceContext()); })()), "categoryName", array());
224 224
         echo "
225 225
     <strong>";
226 226
         // line 76
227
-        echo twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 76, $this->getSourceContext()); })()), "shortname", array());
227
+        echo twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 76, $this->getSourceContext()); })()), "shortname", array());
228 228
         echo "</strong>";
229 229
         // line 77
230
-        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 77, $this->getSourceContext()); })()), "parent", array())) {
230
+        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 77, $this->getSourceContext()); })()), "parent", array())) {
231 231
             // line 78
232 232
             echo "        extends ";
233
-            echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_class_link(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 78, $this->getSourceContext()); })()), "parent", array()));
233
+            echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_class_link(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 78, $this->getSourceContext()); })()), "parent", array()));
234 234
         }
235 235
         // line 80
236
-        if ((twig_length_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 80, $this->getSourceContext()); })()), "interfaces", array())) > 0)) {
236
+        if ((twig_length_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 80, $this->getSourceContext()); })()), "interfaces", array())) > 0)) {
237 237
             // line 81
238 238
             echo "        implements
239 239
         ";
240 240
             // line 82
241 241
             $context['_parent'] = $context;
242
-            $context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 82, $this->getSourceContext()); })()), "interfaces", array()));
242
+            $context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 82, $this->getSourceContext()); })()), "interfaces", array()));
243 243
             $context['loop'] = array(
244 244
               'parent' => $context['_parent'],
245 245
               'index0' => 0,
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
                 // line 83
258 258
                 echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_class_link($context["interface"]);
259 259
                 // line 84
260
-                if ( !twig_get_attribute($this->env, $this->getSourceContext(), $context["loop"], "last", array())) {
260
+                if (!twig_get_attribute($this->env, $this->getSourceContext(), $context["loop"], "last", array())) {
261 261
                     echo ", ";
262 262
                 }
263 263
                 ++$context['loop']['index0'];
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
             $context = array_intersect_key($context, $_parent) + $_parent;
275 275
         }
276 276
         // line 87
277
-        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_source_link((isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function () { throw new Twig_Error_Runtime('Variable "project" does not exist.', 87, $this->getSourceContext()); })()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 87, $this->getSourceContext()); })()));
277
+        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_source_link((isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function() { throw new Twig_Error_Runtime('Variable "project" does not exist.', 87, $this->getSourceContext()); })()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 87, $this->getSourceContext()); })()));
278 278
         echo "
279 279
 ";
280 280
     }
@@ -283,36 +283,36 @@  discard block
 block discarded – undo
283 283
     public function block_method_signature($context, array $blocks = array())
284 284
     {
285 285
         // line 91
286
-        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 91, $this->getSourceContext()); })()), "final", array())) {
286
+        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 91, $this->getSourceContext()); })()), "final", array())) {
287 287
             echo "final";
288 288
         }
289 289
         // line 92
290 290
         echo "    ";
291
-        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 92, $this->getSourceContext()); })()), "abstract", array())) {
291
+        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 92, $this->getSourceContext()); })()), "abstract", array())) {
292 292
             echo "abstract";
293 293
         }
294 294
         // line 93
295 295
         echo "    ";
296
-        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 93, $this->getSourceContext()); })()), "static", array())) {
296
+        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 93, $this->getSourceContext()); })()), "static", array())) {
297 297
             echo "static";
298 298
         }
299 299
         // line 94
300 300
         echo "    ";
301
-        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 94, $this->getSourceContext()); })()), "protected", array())) {
301
+        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 94, $this->getSourceContext()); })()), "protected", array())) {
302 302
             echo "protected";
303 303
         }
304 304
         // line 95
305 305
         echo "    ";
306
-        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 95, $this->getSourceContext()); })()), "private", array())) {
306
+        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 95, $this->getSourceContext()); })()), "private", array())) {
307 307
             echo "private";
308 308
         }
309 309
         // line 96
310 310
         echo "    ";
311
-        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_hint_link(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 96, $this->getSourceContext()); })()), "hint", array()));
311
+        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_hint_link(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 96, $this->getSourceContext()); })()), "hint", array()));
312 312
         echo "
313 313
     <strong>";
314 314
         // line 97
315
-        echo twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 97, $this->getSourceContext()); })()), "name", array());
315
+        echo twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 97, $this->getSourceContext()); })()), "name", array());
316 316
         echo "</strong>";
317 317
         $this->displayBlock("method_parameters_signature", $context, $blocks);
318 318
     }
@@ -323,11 +323,11 @@  discard block
 block discarded – undo
323 323
         // line 101
324 324
         $context["__internal_e5526c505280ad0bbf95d58362fb9bb28353f075e956801d475b1e1d91892a94"] = $this->loadTemplate("macros.twig", "class.twig", 101);
325 325
         // line 102
326
-        echo $context["__internal_e5526c505280ad0bbf95d58362fb9bb28353f075e956801d475b1e1d91892a94"]->macro_method_parameters_signature((isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 102, $this->getSourceContext()); })()));
326
+        echo $context["__internal_e5526c505280ad0bbf95d58362fb9bb28353f075e956801d475b1e1d91892a94"]->macro_method_parameters_signature((isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 102, $this->getSourceContext()); })()));
327 327
         echo "
328 328
     ";
329 329
         // line 103
330
-        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_deprecated((isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 103, $this->getSourceContext()); })()));
330
+        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_deprecated((isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 103, $this->getSourceContext()); })()));
331 331
     }
332 332
 
333 333
     // line 106
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
         ";
339 339
         // line 108
340 340
         $context['_parent'] = $context;
341
-        $context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 108, $this->getSourceContext()); })()), "parameters", array()));
341
+        $context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 108, $this->getSourceContext()); })()), "parameters", array()));
342 342
         foreach ($context['_seq'] as $context["_key"] => $context["parameter"]) {
343 343
             // line 109
344 344
             echo "            <tr>
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
             echo "</td>
355 355
                 <td>";
356 356
             // line 112
357
-            echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), $context["parameter"], "shortdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 112, $this->getSourceContext()); })()));
357
+            echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), $context["parameter"], "shortdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 112, $this->getSourceContext()); })()));
358 358
             echo "</td>
359 359
             </tr>
360 360
         ";
@@ -375,11 +375,11 @@  discard block
 block discarded – undo
375 375
         <tr>
376 376
             <td>";
377 377
         // line 121
378
-        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_hint_link(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 121, $this->getSourceContext()); })()), "hint", array()));
378
+        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_hint_link(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 121, $this->getSourceContext()); })()), "hint", array()));
379 379
         echo "</td>
380 380
             <td>";
381 381
         // line 122
382
-        echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 122, $this->getSourceContext()); })()), "hintDesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 122, $this->getSourceContext()); })()));
382
+        echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 122, $this->getSourceContext()); })()), "hintDesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 122, $this->getSourceContext()); })()));
383 383
         echo "</td>
384 384
         </tr>
385 385
     </table>
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
         ";
395 395
         // line 129
396 396
         $context['_parent'] = $context;
397
-        $context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 129, $this->getSourceContext()); })()), "exceptions", array()));
397
+        $context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 129, $this->getSourceContext()); })()), "exceptions", array()));
398 398
         foreach ($context['_seq'] as $context["_key"] => $context["exception"]) {
399 399
             // line 130
400 400
             echo "            <tr>
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
             echo "</td>
405 405
                 <td>";
406 406
             // line 132
407
-            echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), $context["exception"], 1, array(), "array"), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 132, $this->getSourceContext()); })()));
407
+            echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), $context["exception"], 1, array(), "array"), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 132, $this->getSourceContext()); })()));
408 408
             echo "</td>
409 409
             </tr>
410 410
         ";
@@ -425,7 +425,7 @@  discard block
 block discarded – undo
425 425
         ";
426 426
         // line 140
427 427
         $context['_parent'] = $context;
428
-        $context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 140, $this->getSourceContext()); })()), "tags", array(0 => "see"), "method"));
428
+        $context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 140, $this->getSourceContext()); })()), "tags", array(0 => "see"), "method"));
429 429
         foreach ($context['_seq'] as $context["_key"] => $context["tag"]) {
430 430
             // line 141
431 431
             echo "            <tr>
@@ -456,7 +456,7 @@  discard block
 block discarded – undo
456 456
         ";
457 457
         // line 151
458 458
         $context['_parent'] = $context;
459
-        $context['_seq'] = twig_ensure_traversable((isset($context["constants"]) || array_key_exists("constants", $context) ? $context["constants"] : (function () { throw new Twig_Error_Runtime('Variable "constants" does not exist.', 151, $this->getSourceContext()); })()));
459
+        $context['_seq'] = twig_ensure_traversable((isset($context["constants"]) || array_key_exists("constants", $context) ? $context["constants"] : (function() { throw new Twig_Error_Runtime('Variable "constants" does not exist.', 151, $this->getSourceContext()); })()));
460 460
         foreach ($context['_seq'] as $context["_key"] => $context["constant"]) {
461 461
             // line 152
462 462
             echo "            <tr>
@@ -467,11 +467,11 @@  discard block
 block discarded – undo
467 467
                 <td class=\"last\">
468 468
                     <p><em>";
469 469
             // line 155
470
-            echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), $context["constant"], "shortdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 155, $this->getSourceContext()); })()));
470
+            echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), $context["constant"], "shortdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 155, $this->getSourceContext()); })()));
471 471
             echo "</em></p>
472 472
                     <p>";
473 473
             // line 156
474
-            echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), $context["constant"], "longdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 156, $this->getSourceContext()); })()));
474
+            echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), $context["constant"], "longdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 156, $this->getSourceContext()); })()));
475 475
             echo "</p>
476 476
                 </td>
477 477
             </tr>
@@ -493,7 +493,7 @@  discard block
 block discarded – undo
493 493
         ";
494 494
         // line 165
495 495
         $context['_parent'] = $context;
496
-        $context['_seq'] = twig_ensure_traversable((isset($context["properties"]) || array_key_exists("properties", $context) ? $context["properties"] : (function () { throw new Twig_Error_Runtime('Variable "properties" does not exist.', 165, $this->getSourceContext()); })()));
496
+        $context['_seq'] = twig_ensure_traversable((isset($context["properties"]) || array_key_exists("properties", $context) ? $context["properties"] : (function() { throw new Twig_Error_Runtime('Variable "properties" does not exist.', 165, $this->getSourceContext()); })()));
497 497
         foreach ($context['_seq'] as $context["_key"] => $context["property"]) {
498 498
             // line 166
499 499
             echo "            <tr>
@@ -527,11 +527,11 @@  discard block
 block discarded – undo
527 527
             echo "</td>
528 528
                 <td class=\"last\">";
529 529
             // line 174
530
-            echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), $context["property"], "shortdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 174, $this->getSourceContext()); })()));
530
+            echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), $context["property"], "shortdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 174, $this->getSourceContext()); })()));
531 531
             echo "</td>
532 532
                 <td>";
533 533
             // line 176
534
-            if ( !(twig_get_attribute($this->env, $this->getSourceContext(), $context["property"], "class", array()) === (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 176, $this->getSourceContext()); })()))) {
534
+            if (!(twig_get_attribute($this->env, $this->getSourceContext(), $context["property"], "class", array()) === (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 176, $this->getSourceContext()); })()))) {
535 535
                 // line 177
536 536
                 echo "<small>from&nbsp;";
537 537
                 echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_property_link($context["property"], false, true);
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
         ";
559 559
         // line 187
560 560
         $context['_parent'] = $context;
561
-        $context['_seq'] = twig_ensure_traversable((isset($context["methods"]) || array_key_exists("methods", $context) ? $context["methods"] : (function () { throw new Twig_Error_Runtime('Variable "methods" does not exist.', 187, $this->getSourceContext()); })()));
561
+        $context['_seq'] = twig_ensure_traversable((isset($context["methods"]) || array_key_exists("methods", $context) ? $context["methods"] : (function() { throw new Twig_Error_Runtime('Variable "methods" does not exist.', 187, $this->getSourceContext()); })()));
562 562
         $context['loop'] = array(
563 563
           'parent' => $context['_parent'],
564 564
           'index0' => 0,
@@ -595,21 +595,21 @@  discard block
 block discarded – undo
595 595
             echo "
596 596
                     ";
597 597
             // line 194
598
-            if ( !twig_get_attribute($this->env, $this->getSourceContext(), $context["method"], "shortdesc", array())) {
598
+            if (!twig_get_attribute($this->env, $this->getSourceContext(), $context["method"], "shortdesc", array())) {
599 599
                 // line 195
600 600
                 echo "                        <p class=\"no-description\">No description</p>
601 601
                     ";
602 602
             } else {
603 603
                 // line 197
604 604
                 echo "                        <p>";
605
-                echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), $context["method"], "shortdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 197, $this->getSourceContext()); })()));
605
+                echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), $context["method"], "shortdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 197, $this->getSourceContext()); })()));
606 606
                 echo "</p>";
607 607
             }
608 608
             // line 199
609 609
             echo "                </div>
610 610
                 <div class=\"col-md-2\">";
611 611
             // line 201
612
-            if ( !(twig_get_attribute($this->env, $this->getSourceContext(), $context["method"], "class", array()) === (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 201, $this->getSourceContext()); })()))) {
612
+            if (!(twig_get_attribute($this->env, $this->getSourceContext(), $context["method"], "class", array()) === (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 201, $this->getSourceContext()); })()))) {
613 613
                 // line 202
614 614
                 echo "<small>from&nbsp;";
615 615
                 echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_method_link($context["method"], false, true);
@@ -644,7 +644,7 @@  discard block
 block discarded – undo
644 644
         ";
645 645
         // line 212
646 646
         $context['_parent'] = $context;
647
-        $context['_seq'] = twig_ensure_traversable((isset($context["methods"]) || array_key_exists("methods", $context) ? $context["methods"] : (function () { throw new Twig_Error_Runtime('Variable "methods" does not exist.', 212, $this->getSourceContext()); })()));
647
+        $context['_seq'] = twig_ensure_traversable((isset($context["methods"]) || array_key_exists("methods", $context) ? $context["methods"] : (function() { throw new Twig_Error_Runtime('Variable "methods" does not exist.', 212, $this->getSourceContext()); })()));
648 648
         $context['loop'] = array(
649 649
           'parent' => $context['_parent'],
650 650
           'index0' => 0,
@@ -689,17 +689,17 @@  discard block
 block discarded – undo
689 689
     {
690 690
         // line 221
691 691
         echo "    <h3 id=\"method_";
692
-        echo twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 221, $this->getSourceContext()); })()), "name", array());
692
+        echo twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 221, $this->getSourceContext()); })()), "name", array());
693 693
         echo "\">
694 694
         <div class=\"location\">";
695 695
         // line 222
696
-        if ( !(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 222, $this->getSourceContext()); })()), "class", array()) === (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 222, $this->getSourceContext()); })()))) {
696
+        if (!(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 222, $this->getSourceContext()); })()), "class", array()) === (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 222, $this->getSourceContext()); })()))) {
697 697
             echo "in ";
698
-            echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_method_link((isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 222, $this->getSourceContext()); })()), false, true);
698
+            echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_method_link((isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 222, $this->getSourceContext()); })()), false, true);
699 699
             echo " ";
700 700
         }
701 701
         echo "at ";
702
-        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_method_source_link((isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 222, $this->getSourceContext()); })()));
702
+        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_method_source_link((isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 222, $this->getSourceContext()); })()));
703 703
         echo "</div>
704 704
         <code>";
705 705
         // line 223
@@ -709,35 +709,35 @@  discard block
 block discarded – undo
709 709
     <div class=\"details\">
710 710
         ";
711 711
         // line 226
712
-        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_deprecations((isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 226, $this->getSourceContext()); })()));
712
+        echo $context["__internal_44e5e6177e45d071724fe0d806624d3473537ea7355a32a2b1910210ba605d22"]->macro_deprecations((isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 226, $this->getSourceContext()); })()));
713 713
         echo "
714 714
 
715 715
         ";
716 716
         // line 228
717
-        if ((twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 228, $this->getSourceContext()); })()), "shortdesc", array()) || twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 228, $this->getSourceContext()); })()), "longdesc", array()))) {
717
+        if ((twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 228, $this->getSourceContext()); })()), "shortdesc", array()) || twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 228, $this->getSourceContext()); })()), "longdesc", array()))) {
718 718
             // line 229
719 719
             echo "            <div class=\"method-description\">
720 720
                 ";
721 721
             // line 230
722
-            if (( !twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 230, $this->getSourceContext()); })()), "shortdesc", array()) &&  !twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 230, $this->getSourceContext()); })()), "longdesc", array()))) {
722
+            if ((!twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 230, $this->getSourceContext()); })()), "shortdesc", array()) && !twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 230, $this->getSourceContext()); })()), "longdesc", array()))) {
723 723
                 // line 231
724 724
                 echo "                    <p class=\"no-description\">No description</p>
725 725
                 ";
726 726
             } else {
727 727
                 // line 233
728 728
                 echo "                    ";
729
-                if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 233, $this->getSourceContext()); })()), "shortdesc", array())) {
729
+                if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 233, $this->getSourceContext()); })()), "shortdesc", array())) {
730 730
                     // line 234
731 731
                     echo "<p>";
732
-                    echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 234, $this->getSourceContext()); })()), "shortdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 234, $this->getSourceContext()); })()));
732
+                    echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 234, $this->getSourceContext()); })()), "shortdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 234, $this->getSourceContext()); })()));
733 733
                     echo "</p>";
734 734
                 }
735 735
                 // line 236
736 736
                 echo "                    ";
737
-                if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 236, $this->getSourceContext()); })()), "longdesc", array())) {
737
+                if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 236, $this->getSourceContext()); })()), "longdesc", array())) {
738 738
                     // line 237
739 739
                     echo "<p>";
740
-                    echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 237, $this->getSourceContext()); })()), "longdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function () { throw new Twig_Error_Runtime('Variable "class" does not exist.', 237, $this->getSourceContext()); })()));
740
+                    echo $this->env->getExtension('Sami\Renderer\TwigExtension')->parseDesc($context, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 237, $this->getSourceContext()); })()), "longdesc", array()), (isset($context["class"]) || array_key_exists("class", $context) ? $context["class"] : (function() { throw new Twig_Error_Runtime('Variable "class" does not exist.', 237, $this->getSourceContext()); })()));
741 741
                     echo "</p>";
742 742
                 }
743 743
             }
@@ -749,7 +749,7 @@  discard block
 block discarded – undo
749 749
         echo "        <div class=\"tags\">
750 750
             ";
751 751
         // line 243
752
-        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 243, $this->getSourceContext()); })()), "parameters", array())) {
752
+        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 243, $this->getSourceContext()); })()), "parameters", array())) {
753 753
             // line 244
754 754
             echo "                <h4>Parameters</h4>
755 755
 
@@ -763,7 +763,7 @@  discard block
 block discarded – undo
763 763
         echo "
764 764
             ";
765 765
         // line 249
766
-        if ((twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 249, $this->getSourceContext()); })()), "hintDesc", array()) || twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 249, $this->getSourceContext()); })()), "hint", array()))) {
766
+        if ((twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 249, $this->getSourceContext()); })()), "hintDesc", array()) || twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 249, $this->getSourceContext()); })()), "hint", array()))) {
767 767
             // line 250
768 768
             echo "                <h4>Return Value</h4>
769 769
 
@@ -777,7 +777,7 @@  discard block
 block discarded – undo
777 777
         echo "
778 778
             ";
779 779
         // line 255
780
-        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 255, $this->getSourceContext()); })()), "exceptions", array())) {
780
+        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 255, $this->getSourceContext()); })()), "exceptions", array())) {
781 781
             // line 256
782 782
             echo "                <h4>Exceptions</h4>
783 783
 
@@ -791,7 +791,7 @@  discard block
 block discarded – undo
791 791
         echo "
792 792
             ";
793 793
         // line 261
794
-        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function () { throw new Twig_Error_Runtime('Variable "method" does not exist.', 261, $this->getSourceContext()); })()), "tags", array(0 => "see"), "method")) {
794
+        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["method"]) || array_key_exists("method", $context) ? $context["method"] : (function() { throw new Twig_Error_Runtime('Variable "method" does not exist.', 261, $this->getSourceContext()); })()), "tags", array(0 => "see"), "method")) {
795 795
             // line 262
796 796
             echo "                <h4>See also</h4>
797 797
 
@@ -819,7 +819,7 @@  discard block
 block discarded – undo
819 819
 
820 820
     public function getDebugInfo()
821 821
     {
822
-        return array (  805 => 266,  800 => 264,  796 => 262,  794 => 261,  791 => 260,  786 => 258,  782 => 256,  780 => 255,  777 => 254,  772 => 252,  768 => 250,  766 => 249,  763 => 248,  758 => 246,  754 => 244,  752 => 243,  749 => 242,  745 => 240,  739 => 237,  736 => 236,  731 => 234,  728 => 233,  724 => 231,  722 => 230,  719 => 229,  717 => 228,  712 => 226,  706 => 223,  696 => 222,  691 => 221,  688 => 220,  683 => 217,  666 => 214,  663 => 213,  646 => 212,  643 => 211,  640 => 210,  635 => 207,  619 => 204,  614 => 202,  612 => 201,  609 => 199,  604 => 197,  600 => 195,  598 => 194,  590 => 193,  581 => 190,  577 => 188,  560 => 187,  557 => 186,  554 => 185,  549 => 182,  541 => 179,  536 => 177,  534 => 176,  530 => 174,  526 => 173,  520 => 171,  515 => 170,  510 => 169,  506 => 168,  502 => 167,  499 => 166,  495 => 165,  492 => 164,  489 => 163,  484 => 160,  474 => 156,  470 => 155,  465 => 153,  462 => 152,  458 => 151,  455 => 150,  452 => 149,  447 => 146,  438 => 143,  434 => 142,  431 => 141,  427 => 140,  424 => 139,  421 => 138,  416 => 135,  407 => 132,  403 => 131,  400 => 130,  396 => 129,  393 => 128,  390 => 127,  382 => 122,  378 => 121,  374 => 119,  371 => 118,  366 => 115,  357 => 112,  353 => 111,  347 => 110,  344 => 109,  340 => 108,  337 => 107,  334 => 106,  330 => 103,  326 => 102,  324 => 101,  321 => 100,  315 => 97,  310 => 96,  305 => 95,  300 => 94,  295 => 93,  290 => 92,  286 => 91,  283 => 90,  277 => 87,  260 => 84,  258 => 83,  241 => 82,  238 => 81,  236 => 80,  232 => 78,  230 => 77,  227 => 76,  222 => 75,  218 => 74,  215 => 73,  210 => 70,  205 => 68,  198 => 64,  194 => 62,  192 => 61,  189 => 60,  184 => 58,  180 => 56,  178 => 55,  175 => 54,  170 => 52,  166 => 50,  164 => 49,  161 => 48,  156 => 46,  152 => 44,  150 => 43,  147 => 42,  143 => 40,  138 => 38,  135 => 37,  130 => 35,  128 => 34,  125 => 33,  123 => 32,  118 => 30,  113 => 28,  106 => 24,  102 => 23,  97 => 20,  94 => 19,  85 => 13,  81 => 12,  77 => 11,  73 => 9,  70 => 8,  67 => 7,  61 => 5,  55 => 4,  47 => 3,  43 => 1,  41 => 2,  11 => 1,);
822
+        return array(805 => 266, 800 => 264, 796 => 262, 794 => 261, 791 => 260, 786 => 258, 782 => 256, 780 => 255, 777 => 254, 772 => 252, 768 => 250, 766 => 249, 763 => 248, 758 => 246, 754 => 244, 752 => 243, 749 => 242, 745 => 240, 739 => 237, 736 => 236, 731 => 234, 728 => 233, 724 => 231, 722 => 230, 719 => 229, 717 => 228, 712 => 226, 706 => 223, 696 => 222, 691 => 221, 688 => 220, 683 => 217, 666 => 214, 663 => 213, 646 => 212, 643 => 211, 640 => 210, 635 => 207, 619 => 204, 614 => 202, 612 => 201, 609 => 199, 604 => 197, 600 => 195, 598 => 194, 590 => 193, 581 => 190, 577 => 188, 560 => 187, 557 => 186, 554 => 185, 549 => 182, 541 => 179, 536 => 177, 534 => 176, 530 => 174, 526 => 173, 520 => 171, 515 => 170, 510 => 169, 506 => 168, 502 => 167, 499 => 166, 495 => 165, 492 => 164, 489 => 163, 484 => 160, 474 => 156, 470 => 155, 465 => 153, 462 => 152, 458 => 151, 455 => 150, 452 => 149, 447 => 146, 438 => 143, 434 => 142, 431 => 141, 427 => 140, 424 => 139, 421 => 138, 416 => 135, 407 => 132, 403 => 131, 400 => 130, 396 => 129, 393 => 128, 390 => 127, 382 => 122, 378 => 121, 374 => 119, 371 => 118, 366 => 115, 357 => 112, 353 => 111, 347 => 110, 344 => 109, 340 => 108, 337 => 107, 334 => 106, 330 => 103, 326 => 102, 324 => 101, 321 => 100, 315 => 97, 310 => 96, 305 => 95, 300 => 94, 295 => 93, 290 => 92, 286 => 91, 283 => 90, 277 => 87, 260 => 84, 258 => 83, 241 => 82, 238 => 81, 236 => 80, 232 => 78, 230 => 77, 227 => 76, 222 => 75, 218 => 74, 215 => 73, 210 => 70, 205 => 68, 198 => 64, 194 => 62, 192 => 61, 189 => 60, 184 => 58, 180 => 56, 178 => 55, 175 => 54, 170 => 52, 166 => 50, 164 => 49, 161 => 48, 156 => 46, 152 => 44, 150 => 43, 147 => 42, 143 => 40, 138 => 38, 135 => 37, 130 => 35, 128 => 34, 125 => 33, 123 => 32, 118 => 30, 113 => 28, 106 => 24, 102 => 23, 97 => 20, 94 => 19, 85 => 13, 81 => 12, 77 => 11, 73 => 9, 70 => 8, 67 => 7, 61 => 5, 55 => 4, 47 => 3, 43 => 1, 41 => 2, 11 => 1,);
823 823
     }
824 824
 
825 825
     public function getSourceContext()
Please login to merge, or discard this patch.
04/040d77ded848542efe79d1618c62271e27b67b4f9c21549433d420028a31b338.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
     ";
51 51
         // line 10
52
-        if ((isset($context["namespaces"]) || array_key_exists("namespaces", $context) ? $context["namespaces"] : (function () { throw new Twig_Error_Runtime('Variable "namespaces" does not exist.', 10, $this->getSourceContext()); })())) {
52
+        if ((isset($context["namespaces"]) || array_key_exists("namespaces", $context) ? $context["namespaces"] : (function() { throw new Twig_Error_Runtime('Variable "namespaces" does not exist.', 10, $this->getSourceContext()); })())) {
53 53
             // line 11
54 54
             echo "        <div class=\"namespaces clearfix\">
55 55
             ";
@@ -58,29 +58,29 @@  discard block
 block discarded – undo
58 58
             // line 13
59 59
             echo "            ";
60 60
             $context['_parent'] = $context;
61
-            $context['_seq'] = twig_ensure_traversable((isset($context["namespaces"]) || array_key_exists("namespaces", $context) ? $context["namespaces"] : (function () { throw new Twig_Error_Runtime('Variable "namespaces" does not exist.', 13, $this->getSourceContext()); })()));
61
+            $context['_seq'] = twig_ensure_traversable((isset($context["namespaces"]) || array_key_exists("namespaces", $context) ? $context["namespaces"] : (function() { throw new Twig_Error_Runtime('Variable "namespaces" does not exist.', 13, $this->getSourceContext()); })()));
62 62
             foreach ($context['_seq'] as $context["_key"] => $context["namespace"]) {
63 63
                 // line 14
64 64
                 echo "                ";
65 65
                 $context["top_level"] = twig_first($this->env, twig_split_filter($this->env, $context["namespace"], "\\"));
66 66
                 // line 15
67 67
                 echo "                ";
68
-                if (((isset($context["top_level"]) || array_key_exists("top_level", $context) ? $context["top_level"] : (function () { throw new Twig_Error_Runtime('Variable "top_level" does not exist.', 15, $this->getSourceContext()); })()) != (isset($context["last_name"]) || array_key_exists("last_name", $context) ? $context["last_name"] : (function () { throw new Twig_Error_Runtime('Variable "last_name" does not exist.', 15, $this->getSourceContext()); })()))) {
68
+                if (((isset($context["top_level"]) || array_key_exists("top_level", $context) ? $context["top_level"] : (function() { throw new Twig_Error_Runtime('Variable "top_level" does not exist.', 15, $this->getSourceContext()); })()) != (isset($context["last_name"]) || array_key_exists("last_name", $context) ? $context["last_name"] : (function() { throw new Twig_Error_Runtime('Variable "last_name" does not exist.', 15, $this->getSourceContext()); })()))) {
69 69
                     // line 16
70 70
                     echo "                    ";
71
-                    if ((isset($context["last_name"]) || array_key_exists("last_name", $context) ? $context["last_name"] : (function () { throw new Twig_Error_Runtime('Variable "last_name" does not exist.', 16, $this->getSourceContext()); })())) {
71
+                    if ((isset($context["last_name"]) || array_key_exists("last_name", $context) ? $context["last_name"] : (function() { throw new Twig_Error_Runtime('Variable "last_name" does not exist.', 16, $this->getSourceContext()); })())) {
72 72
                         echo "</ul></div>";
73 73
                     }
74 74
                     // line 17
75 75
                     echo "                    <div class=\"namespace-container\">
76 76
                         <h2>";
77 77
                     // line 18
78
-                    echo (isset($context["top_level"]) || array_key_exists("top_level", $context) ? $context["top_level"] : (function () { throw new Twig_Error_Runtime('Variable "top_level" does not exist.', 18, $this->getSourceContext()); })());
78
+                    echo (isset($context["top_level"]) || array_key_exists("top_level", $context) ? $context["top_level"] : (function() { throw new Twig_Error_Runtime('Variable "top_level" does not exist.', 18, $this->getSourceContext()); })());
79 79
                     echo "</h2>
80 80
                         <ul>
81 81
                     ";
82 82
                     // line 20
83
-                    $context["last_name"] = (isset($context["top_level"]) || array_key_exists("top_level", $context) ? $context["top_level"] : (function () { throw new Twig_Error_Runtime('Variable "top_level" does not exist.', 20, $this->getSourceContext()); })());
83
+                    $context["last_name"] = (isset($context["top_level"]) || array_key_exists("top_level", $context) ? $context["top_level"] : (function() { throw new Twig_Error_Runtime('Variable "top_level" does not exist.', 20, $this->getSourceContext()); })());
84 84
                     // line 21
85 85
                     echo "                ";
86 86
                 }
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 
119 119
     public function getDebugInfo()
120 120
     {
121
-        return array (  105 => 28,  99 => 24,  88 => 22,  85 => 21,  83 => 20,  78 => 18,  75 => 17,  70 => 16,  67 => 15,  64 => 14,  59 => 13,  57 => 12,  54 => 11,  52 => 10,  46 => 6,  43 => 5,  37 => 3,  30 => 2,  11 => 1,);
121
+        return array(105 => 28, 99 => 24, 88 => 22, 85 => 21, 83 => 20, 78 => 18, 75 => 17, 70 => 16, 67 => 15, 64 => 14, 59 => 13, 57 => 12, 54 => 11, 52 => 10, 46 => 6, 43 => 5, 37 => 3, 30 => 2, 11 => 1,);
122 122
     }
123 123
 
124 124
     public function getSourceContext()
Please login to merge, or discard this patch.
2b/2b40e7107db08f7e9dadf65f407f16ac96b8ef9ee36cb66389e400f2a0116185.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@
 block discarded – undo
153 153
 
154 154
     public function getDebugInfo()
155 155
     {
156
-        return array (  89 => 36,  86 => 35,  79 => 31,  62 => 17,  50 => 7,  47 => 6,  41 => 4,  34 => 3,  30 => 1,  28 => 2,  11 => 1,);
156
+        return array(89 => 36, 86 => 35, 79 => 31, 62 => 17, 50 => 7, 47 => 6, 41 => 4, 34 => 3, 30 => 1, 28 => 2, 11 => 1,);
157 157
     }
158 158
 
159 159
     public function getSourceContext()
Please login to merge, or discard this patch.
08/08cbdf23903fbfcb38f4b0cc70bcbd85a0f8a73be1c83f051d05677a8bf90530.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -16,38 +16,38 @@  discard block
 block discarded – undo
16 16
     protected function doDisplay(array $context, array $blocks = array())
17 17
     {
18 18
         // line 1
19
-        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function () { throw new Twig_Error_Runtime('Variable "project" does not exist.', 1, $this->getSourceContext()); })()), "config", array(0 => "base_url"), "method")) {
19
+        if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function() { throw new Twig_Error_Runtime('Variable "project" does not exist.', 1, $this->getSourceContext()); })()), "config", array(0 => "base_url"), "method")) {
20 20
             // line 2
21 21
             echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
22 22
     <OpenSearchDescription xmlns=\"http://a9.com/-/spec/opensearch/1.1/\" xmlns:referrer=\"http://a9.com/-/opensearch/extensions/referrer/\">
23 23
         <ShortName>";
24 24
             // line 4
25
-            echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function () { throw new Twig_Error_Runtime('Variable "project" does not exist.', 4, $this->getSourceContext()); })()), "config", array(0 => "title"), "method"), "html", null, true);
25
+            echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function() { throw new Twig_Error_Runtime('Variable "project" does not exist.', 4, $this->getSourceContext()); })()), "config", array(0 => "title"), "method"), "html", null, true);
26 26
             echo " (";
27
-            echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function () { throw new Twig_Error_Runtime('Variable "project" does not exist.', 4, $this->getSourceContext()); })()), "version", array()), "html", null, true);
27
+            echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function() { throw new Twig_Error_Runtime('Variable "project" does not exist.', 4, $this->getSourceContext()); })()), "version", array()), "html", null, true);
28 28
             echo ")</ShortName>
29 29
         <Description>Searches ";
30 30
             // line 5
31
-            echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function () { throw new Twig_Error_Runtime('Variable "project" does not exist.', 5, $this->getSourceContext()); })()), "config", array(0 => "title"), "method"), "html", null, true);
31
+            echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function() { throw new Twig_Error_Runtime('Variable "project" does not exist.', 5, $this->getSourceContext()); })()), "config", array(0 => "title"), "method"), "html", null, true);
32 32
             echo " (";
33
-            echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function () { throw new Twig_Error_Runtime('Variable "project" does not exist.', 5, $this->getSourceContext()); })()), "version", array()), "html", null, true);
33
+            echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function() { throw new Twig_Error_Runtime('Variable "project" does not exist.', 5, $this->getSourceContext()); })()), "version", array()), "html", null, true);
34 34
             echo ")</Description>
35 35
         <Tags>";
36 36
             // line 6
37
-            echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function () { throw new Twig_Error_Runtime('Variable "project" does not exist.', 6, $this->getSourceContext()); })()), "config", array(0 => "title"), "method"), "html", null, true);
37
+            echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function() { throw new Twig_Error_Runtime('Variable "project" does not exist.', 6, $this->getSourceContext()); })()), "config", array(0 => "title"), "method"), "html", null, true);
38 38
             echo "</Tags>
39 39
         ";
40 40
             // line 7
41
-            if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function () { throw new Twig_Error_Runtime('Variable "project" does not exist.', 7, $this->getSourceContext()); })()), "config", array(0 => "favicon"), "method")) {
41
+            if (twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function() { throw new Twig_Error_Runtime('Variable "project" does not exist.', 7, $this->getSourceContext()); })()), "config", array(0 => "favicon"), "method")) {
42 42
                 // line 8
43 43
                 echo "<Image height=\"16\" width=\"16\" type=\"image/x-icon\">";
44
-                echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function () { throw new Twig_Error_Runtime('Variable "project" does not exist.', 8, $this->getSourceContext()); })()), "config", array(0 => "favicon"), "method"), "html", null, true);
44
+                echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function() { throw new Twig_Error_Runtime('Variable "project" does not exist.', 8, $this->getSourceContext()); })()), "config", array(0 => "favicon"), "method"), "html", null, true);
45 45
                 echo "</Image>
46 46
         ";
47 47
             }
48 48
             // line 10
49 49
             echo "        <Url type=\"text/html\" method=\"GET\" template=\"";
50
-            echo twig_escape_filter($this->env, (twig_replace_filter(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function () { throw new Twig_Error_Runtime('Variable "project" does not exist.', 10, $this->getSourceContext()); })()), "config", array(0 => "base_url"), "method"), array("%version%" => twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function () { throw new Twig_Error_Runtime('Variable "project" does not exist.', 10, $this->getSourceContext()); })()), "version", array()))) . "/index.html?q={searchTerms}&src={referrer:source?}"), "html", null, true);
50
+            echo twig_escape_filter($this->env, (twig_replace_filter(twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function() { throw new Twig_Error_Runtime('Variable "project" does not exist.', 10, $this->getSourceContext()); })()), "config", array(0 => "base_url"), "method"), array("%version%" => twig_get_attribute($this->env, $this->getSourceContext(), (isset($context["project"]) || array_key_exists("project", $context) ? $context["project"] : (function() { throw new Twig_Error_Runtime('Variable "project" does not exist.', 10, $this->getSourceContext()); })()), "version", array()))) . "/index.html?q={searchTerms}&src={referrer:source?}"), "html", null, true);
51 51
             echo "\"/>
52 52
         <InputEncoding>UTF-8</InputEncoding>
53 53
         <AdultContent>false</AdultContent>
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
     public function getDebugInfo()
70 70
     {
71
-        return array (  49 => 10,  43 => 8,  41 => 7,  37 => 6,  31 => 5,  25 => 4,  21 => 2,  19 => 1,);
71
+        return array(49 => 10, 43 => 8, 41 => 7, 37 => 6, 31 => 5, 25 => 4, 21 => 2, 19 => 1,);
72 72
     }
73 73
 
74 74
     public function getSourceContext()
Please login to merge, or discard this patch.
e6/e6d2809a10d5b650b6dd48234ed2fa16a1dd60f90b9cf1b4b9c80952476082a1.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
     ";
54 54
         // line 11
55
-        echo $context["__internal_3005c552368e06b3c8f14a54648ac7453460c4a8e7aa877fc8d33e00011a9dd3"]->macro_render_classes((isset($context["classes"]) || array_key_exists("classes", $context) ? $context["classes"] : (function () { throw new Twig_Error_Runtime('Variable "classes" does not exist.', 11, $this->getSourceContext()); })()));
55
+        echo $context["__internal_3005c552368e06b3c8f14a54648ac7453460c4a8e7aa877fc8d33e00011a9dd3"]->macro_render_classes((isset($context["classes"]) || array_key_exists("classes", $context) ? $context["classes"] : (function() { throw new Twig_Error_Runtime('Variable "classes" does not exist.', 11, $this->getSourceContext()); })()));
56 56
         echo "
57 57
 ";
58 58
     }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
     public function getDebugInfo()
71 71
     {
72
-        return array (  55 => 11,  49 => 7,  46 => 6,  40 => 4,  33 => 3,  29 => 1,  27 => 2,  11 => 1,);
72
+        return array(55 => 11, 49 => 7, 46 => 6, 40 => 4, 33 => 3, 29 => 1, 27 => 2, 11 => 1,);
73 73
     }
74 74
 
75 75
     public function getSourceContext()
Please login to merge, or discard this patch.
5f/5f36d8dbd367ad516467aa7967e1f7749e7c6b86ef6e48606c3bfc8ada428cc0.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 
53 53
     ";
54 54
         // line 11
55
-        echo $context["__internal_c679bdceb703a8de3d9d39c30ea182f0ba58fa5de93939d6546f2ecd7e4cfc5b"]->macro_render_classes((isset($context["interfaces"]) || array_key_exists("interfaces", $context) ? $context["interfaces"] : (function () { throw new Twig_Error_Runtime('Variable "interfaces" does not exist.', 11, $this->getSourceContext()); })()));
55
+        echo $context["__internal_c679bdceb703a8de3d9d39c30ea182f0ba58fa5de93939d6546f2ecd7e4cfc5b"]->macro_render_classes((isset($context["interfaces"]) || array_key_exists("interfaces", $context) ? $context["interfaces"] : (function() { throw new Twig_Error_Runtime('Variable "interfaces" does not exist.', 11, $this->getSourceContext()); })()));
56 56
         echo "
57 57
 ";
58 58
     }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
     public function getDebugInfo()
71 71
     {
72
-        return array (  55 => 11,  49 => 7,  46 => 6,  40 => 4,  33 => 3,  29 => 1,  27 => 2,  11 => 1,);
72
+        return array(55 => 11, 49 => 7, 46 => 6, 40 => 4, 33 => 3, 29 => 1, 27 => 2, 11 => 1,);
73 73
     }
74 74
 
75 75
     public function getSourceContext()
Please login to merge, or discard this patch.