1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-11 08:34:19 +02:00

Improve source factory constructor docs

This commit is contained in:
Steve Clay
2015-09-29 11:31:57 -04:00
parent 271d8ca5bf
commit f769e35233

View File

@@ -18,8 +18,8 @@ class Minify_Source_Factory {
protected $env; protected $env;
/** /**
* @param Minify_Env $env * @param Minify_Env $env
* @param array $options * @param array $options
* *
* noMinPattern : Pattern matched against basename of the filepath (if present). If the pattern * noMinPattern : Pattern matched against basename of the filepath (if present). If the pattern
* matches, Minify will try to avoid re-compressing the resource. * matches, Minify will try to avoid re-compressing the resource.
@@ -40,6 +40,8 @@ class Minify_Source_Factory {
* jumps ahead by a number of hours, set this variable to that number. If the mtime * jumps ahead by a number of hours, set this variable to that number. If the mtime
* moves back, this should not be needed. * moves back, this should not be needed.
* *
* @param Minify_CacheInterface $cache Optional cache for handling .less files.
*
*/ */
public function __construct(Minify_Env $env, array $options = array(), Minify_CacheInterface $cache = null) public function __construct(Minify_Env $env, array $options = array(), Minify_CacheInterface $cache = null)
{ {