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

ImportProcessor: The previews-directory set in the constructor is marked as optional because it should only be used by internal calls. Added PHP-Doc for the constructor.

This commit is contained in:
Simon Schick
2011-10-15 14:31:42 +03:00
parent 26395db67a
commit 02bfb47f03

View File

@@ -41,7 +41,11 @@ class Minify_ImportProcessor {
private static $_isCss = null;
private function __construct($currentDir, $previewsDir)
/**
* @param String $currentDir
* @param String $previewsDir Is only used internally
*/
private function __construct($currentDir, $previewsDir = "")
{
$this->_currentDir = $currentDir;
$this->_previewsDir = $previewsDir;