Browse Source

Fixed dumpep argument.

8.x-1.x
Chi 8 years ago
parent
commit
8ab9255d3e
  1. 4
      src/TwigExtension.php

4
src/TwigExtension.php

@ -350,10 +350,10 @@ class TwigExtension extends \Twig_Extension {
/** /**
* Dumps information about variables. * Dumps information about variables.
*/ */
public function drupalDump() { public function drupalDump($var) {
$var_dumper = '\Symfony\Component\VarDumper\VarDumper'; $var_dumper = '\Symfony\Component\VarDumper\VarDumper';
if (class_exists($var_dumper)) { if (class_exists($var_dumper)) {
call_user_func($var_dumper . '::dump', func_get_args()); call_user_func($var_dumper . '::dump', $var);
} }
else { else {
trigger_error('Could not dump the variable because symfony/var-dumper component is not installed.', E_USER_WARNING); trigger_error('Could not dump the variable because symfony/var-dumper component is not installed.', E_USER_WARNING);

Loading…
Cancel
Save