Browse
For agents
About
WP Super Minify • Minify, Compress and Cache HTML, CSS & JavaScript
/
trunk
WP Super Minify • Minify, Compress and Cache HTML, CSS & JavaScript
vtrunk
Switch version
trunk
1.0
1.1
1.2
1.3
1.3.1
1.3.2
1.4
1.5
1.5.1
1.6
2.0
2.0.1
Overview
Code
wp-super-minify
/
includes
/
min
/
lib
/
Minify
/
ControllerInterface.php
ControllerInterface.php
in WP Super Minify • Minify, Compress and Cache HTML, CSS & JavaScript trunk, at includes/min/lib/Minify/ControllerInterface.php
23 lines
411 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
4
interface
Minify_ControllerInterface
5
{
6
7
/**
8
* Create controller sources and options for Minify::serve()
9
*
10
*
@param
array
$options controller and Minify options
11
*
12
*
@return
Minify_ServeConfiguration
13
*/
14
public
function
createConfiguration
(
array
$
options
)
;
15
16
/**
17
* Get the Env component
18
*
19
*
@return
Minify_Env
20
*/
21
public
function
getEnv
(
)
;
22
}
23