You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/api/BusinessLogic/Settings/SettingsRetriever.php

22 lines
399 B
PHP

<?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) {
}
}