![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/symfony/templating/ |
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Templating; /** * Interface to be implemented by all templates. * * @author Victor Berchet <[email protected]> */ interface TemplateReferenceInterface { /** * Gets the template parameters. * * @return array */ public function all(); /** * Sets a template parameter. * * @return $this * * @throws \InvalidArgumentException if the parameter name is not supported */ public function set(string $name, string $value); /** * Gets a template parameter. * * @return string * * @throws \InvalidArgumentException if the parameter name is not supported */ public function get(string $name); /** * Returns the path to the template. * * By default, it just returns the template name. * * @return string */ public function getPath(); /** * Returns the "logical" template name. * * The template name acts as a unique identifier for the template. * * @return string */ public function getLogicalName(); /** * Returns the string representation as shortcut for getLogicalName(). * * Alias of getLogicalName(). * * @return string */ public function __toString(); }