Example #1
0
 /**
  * 
  * Constructs a PropertiesStorage.
  * 
  * @param string $folder the name of the folder in which this storage file is placed.
  * @param string $name the name of this storage.
  * 
  * @internal
  */
 function __construct($folder, $name)
 {
     parent::__construct($folder, $name, StorageFactory::PROPERTIES_STORAGE);
 }
Example #2
0
 /**
  * 
  * Constructs an DataStorage.
  * 
  * @param string $folder the name of the folder in which this storage file is placed.
  * @param string $name the name of this storage.
  * 
  * @internal
  */
 function __construct($folder, $name)
 {
     parent::__construct($folder, $name, StorageFactory::DATA_STORAGE);
 }