Merge pull request #138 from box/increase_entropy_uniqid

Increase entropy of uniqid
This commit is contained in:
Adrien Loison 2015-11-05 10:44:47 -08:00
commit f8aab6eefd

View File

@ -94,7 +94,7 @@ class FileSystemHelper extends \Box\Spout\Common\Helper\FileSystemHelper
*/
protected function createRootFolder()
{
$this->rootFolder = $this->createFolder($this->baseFolderPath, uniqid('xlsx'));
$this->rootFolder = $this->createFolder($this->baseFolderPath, uniqid('xlsx', true));
return $this;
}