Skip to content

Commit

Permalink
ImportProcessor: The previews-directory set in the constructor is mar…
Browse files Browse the repository at this point in the history
…ked as optional because it should only be used by internal calls. Added PHP-Doc for the constructor.
  • Loading branch information
Simon Schick authored and acidvertigo committed Dec 7, 2011
1 parent 5ff8b55 commit 5cfd6b0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion min/lib/Minify/ImportProcessor.php
Expand Up @@ -41,7 +41,11 @@ public static function process($file)

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;
Expand Down

0 comments on commit 5cfd6b0

Please sign in to comment.