Пример #1
0
 /**
  * Set storage
  *
  * It unset the storage if $storage is null.
  *
  * @param IStorage $storage
  */
 public static function setStorage($storage)
 {
     self::$storage = $storage;
 }
Пример #2
0
 /**
  * Use master key or not
  *
  * @param  bool $flag
  * @return void
  */
 public static function useMasterKey(bool $flag)
 {
     self::$useMasterKey = $flag ? true : false;
 }