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.
The class Twig_BaseNodeVisitor has been deprecated with message: since Twig 2.7, use "Twig\NodeVisitor\AbstractNodeVisitor" instead
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be
removed from the class and what other constant to use instead.
Loading history...
11
{
12
/**
13
* {@inheritdoc}
14
*/
15
51
public function getPriority()
16
{
17
51
return 0;
18
}
19
20
/**
21
* {@inheritdoc}
22
*/
23
51
protected function doEnterNode(\Twig_Node $node, \Twig_Environment $env)
24
{
25
// add wrapper instance as argument on all method calls
26
51
if ($node instanceof \Twig_Node_Expression_MethodCall) {
27
1
$keyNode = new \Twig_Node_Expression_Constant(PhpSpreadsheetWrapper::INSTANCE_KEY, $node->getTemplateLine());
The class Twig_Node_Expression_Constant has been deprecated with message: since Twig 2.7, use "Twig\Node\Expression\ConstantExpression" instead
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be
removed from the class and what other constant to use instead.
Loading history...
28
29
// add wrapper even if it not exists, we fix that later
30
1
$valueNode = new \Twig_Node_Expression_Name(PhpSpreadsheetWrapper::INSTANCE_KEY, $node->getTemplateLine());
The class Twig_Node_Expression_Name has been deprecated with message: since Twig 2.7, use "Twig\Node\Expression\NameExpression" instead
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be
removed from the class and what other constant to use instead.
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.