Exemplo n.º 1
0
 public function __construct($id, Garp_Spawn_Config_Storage_Interface $storage, Garp_Spawn_Config_Format_Interface $format)
 {
     $this['id'] = $id;
     $rawConfig = $storage->load($id);
     $config = $format->parse($id, $rawConfig);
     $this->_setArrayProperties($config);
     $this->_addStaticDefaults();
     $this->_addModelLabel($id);
 }