public function Debug::kint in Devel 4.x
Similar to dump() but always uses the kint dumper if available.
Handles 0, 1, or multiple arguments.
Parameters
\Twig_Environment $env: The twig environment instance.
array $context: An array of parameters passed to the template.
array $args: An array of parameters passed the function.
Return value
string String representation of the input variables.
See also
\Drupal\devel\DevelDumperManager::dump()
File
- src/
Twig/ Extension/ Debug.php, line 138
Class
- Debug
- Provides the Devel debugging function within Twig templates.
Namespace
Drupal\devel\Twig\ExtensionCode
public function kint(\Twig_Environment $env, array $context, array $args = []) {
return $this
->doDump($env, $context, $args, 'kint');
}