PluginProbe
WebTotem Security / 3.0.2
WebTotem Security v3.0.2
3.0.2 3.0.1 3.0.0 trunk 1.0 1.1 1.2 1.3 1.3.1 1.3.2 1.3.3 2.0 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.1 2.2.2 2.2.3 All 110 releases
wt-security / vendor / twig / twig / src / TokenParser / AbstractTokenParser.php

AbstractTokenParser.php in WebTotem Security 3.0.2, at vendor/twig/twig/src/TokenParser/AbstractTokenParser.php

33 lines 573 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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
12 namespace Twig\TokenParser;
13
14 use Twig\Parser;
15
16 /**
17 * Base class for all token parsers.
18 *
19 * @author Fabien Potencier <fabien@symfony.com>
20 */
21 abstract class AbstractTokenParser implements TokenParserInterface
22 {
23 /**
24 * @var Parser
25 */
26 protected $parser;
27
28 public function setParser(Parser $parser): void
29 {
30 $this->parser = $parser;
31 }
32 }
33