/home/vianto5/heredit.mx/wp-content/plugins/elementor/vendor_prefixed/twig/twig/twig/src
NameSizeModeActions
Attribute/-0755rm
Cache/-0755rm
Error/-0755rm
Extension/-0755rm
Loader/-0755rm
Node/-0755rm
NodeVisitor/-0755rm
Profiler/-0755rm
Resources/-0755rm
Runtime/-0755rm
RuntimeLoader/-0755rm
Sandbox/-0755rm
Test/-0755rm
TokenParser/-0755rm
Util/-0755rm
Compiler.php63620644editdlrm
Environment.php264660644editdlrm
ExpressionParser.php376640644editdlrm
ExtensionSet.php135960644editdlrm
FileExtensionEscapingStrategy.php14630644editdlrm
Lexer.php195390644editdlrm
Markup.php9490644editdlrm
NodeTraverser.php18570644editdlrm
Parser.php115510644editdlrm
Source.php10350644editdlrm
Template.php152460644editdlrm
TemplateWrapper.php22250644editdlrm
Token.php54750644editdlrm
TokenStream.php34080644editdlrm
TwigFilter.php33700644editdlrm
TwigFunction.php31280644editdlrm
TwigTest.php24600644editdlrm
Edit: /home/vianto5/heredit.mx/wp-content/plugins/elementor/vendor_prefixed/twig/twig/twig/src/Source.php (1035B)
*/ final class Source { private $code; private $name; private $path; /** * @param string $code The template source code * @param string $name The template logical name * @param string $path The filesystem path of the template if any */ public function __construct(string $code, string $name, string $path = '') { $this->code = $code; $this->name = $name; $this->path = $path; } public function getCode() : string { return $this->code; } public function getName() : string { return $this->name; } public function getPath() : string { return $this->path; } }