Your IP : 216.73.216.219


Current Path : /home/pteabiscqq/www/libraries/quix/src/View/Engines/
Upload File :
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());

}