mirror of
https://github.com/mrclay/minify.git
synced 2025-08-09 23:56:43 +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:
@@ -41,7 +41,11 @@ class Minify_ImportProcessor {
|
|||||||
|
|
||||||
private static $_isCss = null;
|
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->_currentDir = $currentDir;
|
||||||
$this->_previewsDir = $previewsDir;
|
$this->_previewsDir = $previewsDir;
|
||||||
|
Reference in New Issue
Block a user