22 lines
399 B
PHP
Raw Normal View History

2017-04-28 13:08:25 -04:00
<?php
namespace BusinessLogic\Settings;
// TODO Test!
class SettingsRetriever {
private static $settingsToNotReturn = array(
'webmaster_email',
'noreply_email',
'noreply_name',
'db_.*',
);
/**
* @param $heskSettings array
* @param $modsForHeskSettings array
*/
function getAllSettings($heskSettings, $modsForHeskSettings) {
}
}