1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (http://nette.org)
5: * Copyright (c) 2004 David Grudl (http://davidgrudl.com)
6: */
7:
8: namespace Nette\Bridges\ApplicationLatte;
9:
10:
11: interface ILatteFactory
12: {
13:
14: /**
15: * @return Latte\Engine
16: */
17: function create();
18:
19: }
20: