# wp-super-minify/trunk/includes/min/lib/Minify/ControllerInterface.php

WP Super Minify • Minify, Compress and Cache HTML, CSS &amp; JavaScript, version trunk. 23 lines.

- Page: https://pluginprobe.com/plugins/wp-super-minify/trunk/code/includes/min/lib/Minify/ControllerInterface.php
- Raw: https://pluginprobe.com/plugins/wp-super-minify/trunk/raw/includes/min/lib/Minify/ControllerInterface.php
- Modified: 2025-02-16T14:33:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-super-minify/trunk/code/includes/min/lib/Minify/ControllerInterface.php#L10-L20`.

```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);

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

```
