示例#1
0
 /**
  * Constructor.
  *
  * @param FilesystemInterface $filesystem
  * @param string              $baseSalt
  * @param string              $format
  */
 public function __construct(FilesystemInterface $filesystem, $baseSalt, $format = null)
 {
     parent::__construct(null, $format);
     $this->filesystem = $filesystem;
     $this->baseSalt = $baseSalt;
 }