mirror of
https://github.com/mrclay/minify.git
synced 2025-03-13 08:59:38 +01:00
13 lines
300 B
PHP
13 lines
300 B
PHP
<?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);
|
|
} |