| 1 | <?php |
||
| 14 | class ModuleOptions extends AbstractOptions |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | protected $achievement_providers; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $storage_adapter; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return array |
||
| 28 | */ |
||
| 29 | public function getAchievementProviders() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param array $achievement_providers |
||
| 36 | * @return ModuleOptions |
||
| 37 | */ |
||
| 38 | public function setAchievementProviders($achievement_providers) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return string |
||
| 47 | */ |
||
| 48 | public function getStorageAdapter() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @param string $storage_adapter |
||
| 55 | * @return ModuleOptions |
||
| 56 | */ |
||
| 57 | public function setStorageAdapter($storage_adapter) |
||
| 63 | } |
||
| 64 |