| Current Path : /home/pteabiscqq/www/libraries/quix/src/View/Engines/ |
| Current File : /home/pteabiscqq/www/libraries/quix/src/View/Engines/EngineInterface.php |
<?php
namespace ThemeXpert\View\Engines;
interface EngineInterface
{
/**
* Get the evaluated contents of the view.
*
* @param string $path
* @param array $data
*
* @return string
*/
public function get($path, array $data = array());
}