The class Twig_SimpleFilter has been deprecated with message: since Twig 2.7, use "Twig\TwigFilter" 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...
24
];
25
}
26
27
/**
28
* @param mixed $object
29
*
30
* @return string
31
*/
32
6
public function getType($object): string
33
{
34
6
return $this->doGetType($object, true);
35
}
36
37
public function getName(): string
38
{
39
return 'neo4j.result';
40
}
41
42
/**
43
* @param mixed $object
44
* @param bool $recursive
45
*
46
* @return string
47
*/
48
6
private function doGetType($object, bool $recursive): string
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.