summaryrefslogblamecommitdiffstats
path: root/admin/survey/minify/lib/Minify/ControllerInterface.php
blob: d468635ca02a990a26ae396a57579b6e5e4df5ef (plain) (tree)





















                                                                 
<?php


interface Minify_ControllerInterface
{

    /**
     * Create controller sources and options for Minify::serve()
     *
     * @param array $options controller and Minify options
     *
     * @return Minify_ServeConfiguration
     */
    public function createConfiguration(array $options);

    /**
     * Get the Env component
     *
     * @return Minify_Env
     */
    public function getEnv();
}