1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-12 00:54:35 +02:00

More thorough test_Minify.php

Better var/method naming.
This commit is contained in:
Steve Clay
2008-03-01 04:56:11 +00:00
parent f46e321831
commit 7e9bf6d948
5 changed files with 108 additions and 26 deletions

View File

@@ -18,7 +18,7 @@ class Minify_Controller_Base {
public $sources = array();
/**
* @var array options to be read by read by Minify
* @var array options to be read by Minify
*
* Any unspecified options will use the default values.
*
@@ -63,7 +63,7 @@ class Minify_Controller_Base {
* (bool, default = false)
*
*/
public $options = array();
public $minOptions = array();
/**
* @var bool was the user request valid
@@ -111,7 +111,7 @@ class Minify_Controller_Base {
}
$options['lastModifiedTime'] = $max;
}
$this->options = $options;
$this->minOptions = $options;
}
/**