summaryrefslogtreecommitdiffstats
path: root/admin/survey/minify/lib/Minify/ControllerInterface.php
blob: dad19a9735df99b1c3b428790d0344e0a6f14b49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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();
}