1KA_F2F/admin/survey/minify/lib/Minify/ControllerInterface.php

22 lines
410 B
PHP
Raw Normal View History

2020-08-14 13:36:36 +02:00
<?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();
}