Blame view

src/vendor/1.2.5/Phalcon/Mvc/View/Engine/Php.php 523 Bytes
1ea3b987   Administrator   maby first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <?php 
  
  namespace Phalcon\Mvc\View\Engine {
  
  	/**
  	 * Phalcon\Mvc\View\Engine\Php
  	 *
  	 * Adapter to use PHP itself as templating engine
  	 */
  	
  	class Php extends \Phalcon\Mvc\View\Engine implements \Phalcon\DI\InjectionAwareInterface, \Phalcon\Events\EventsAwareInterface, \Phalcon\Mvc\View\EngineInterface {
  
  		/**
  		 * Renders a view using the template engine
  		 *
  		 * @param string $path
  		 * @param array $params
  		 * @param boolean $mustClean
  		 */
  		public function render($path, $params, $mustClean=null){ }
  
  	}
  }