1<?php
2
3/*
4 * This file is part of Twig.
5 *
6 * (c) Fabien Potencier
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12use Twig\Environment;
13use Twig\Extension\DebugExtension;
14
15/**
16 * @internal
17 *
18 * @deprecated since Twig 3.9
19 */
20function twig_var_dump(Environment $env, $context, ...$vars)
21{
22    trigger_deprecation('twig/twig', '3.9', 'Using the internal "%s" function is deprecated.', __FUNCTION__);
23
24    DebugExtension::dump($env, $context, ...$vars);
25}
26