|
0
|
1 |
<?php |
|
|
2 |
|
|
|
3 |
/* |
|
|
4 |
* This file is part of the Symfony package. |
|
|
5 |
* |
|
|
6 |
* (c) Fabien Potencier <fabien@symfony.com> |
|
|
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 Symfony\Component\Templating; |
|
|
13 |
|
|
|
14 |
/** |
|
|
15 |
* TemplateNameParserInterface converts template names to TemplateReferenceInterface |
|
|
16 |
* instances. |
|
|
17 |
* |
|
|
18 |
* @author Fabien Potencier <fabien@symfony.com> |
|
|
19 |
* |
|
|
20 |
* @api |
|
|
21 |
*/ |
|
|
22 |
interface TemplateNameParserInterface |
|
|
23 |
{ |
|
|
24 |
/** |
|
|
25 |
* Convert a template name to a TemplateReferenceInterface instance. |
|
|
26 |
* |
|
|
27 |
* @param string $name A template name |
|
|
28 |
* |
|
|
29 |
* @return TemplateReferenceInterface A template |
|
|
30 |
* |
|
|
31 |
* @api |
|
|
32 |
*/ |
|
|
33 |
function parse($name); |
|
|
34 |
} |