Ejemplo n.º 1
0
 public function __construct($name, $dir = false, $delimiter = '', $at_least = 0)
 {
     parent::__construct($name, $dir);
     if (!empty($delimiter)) {
         $this->delimiter = $delimiter;
     }
     $this->at_least = $at_least;
 }
Ejemplo n.º 2
0
 /**
  * {@inheritdoc}
  */
 public function __construct($directory, $extension = self::EXTENSION)
 {
     parent::__construct($directory, $extension);
 }
 /**
  * @param $file string File to Store the Cache in
  * @param $encryptionKey string Key to Encrypt File with
  */
 public function __construct($file, $encryptionKey)
 {
     parent::__construct($file);
     $this->encryptionKey = $encryptionKey;
 }
 /**
  * {@inheritdoc}
  */
 public function __construct($directory, $extension = self::EXTENSION, $umask = 02)
 {
     parent::__construct($directory, $extension, $umask);
 }
Ejemplo n.º 5
0
 /**
  * {@inheritdoc}
  */
 public function __construct($directory, $extension = self::EXTENSION, $umask = 02)
 {
     parent::__construct($directory, $extension, $umask);
     self::$emptyErrorHandler = function () {
     };
 }