SettingServiceInterface.php 385 B

123456789101112131415
  1. <?php
  2. namespace common\services;
  3. interface SettingServiceInterface extends ServiceInterface
  4. {
  5. const ServiceName = "settingService";
  6. public function updateWebsiteSetting(array $postData=[]);
  7. public function updateCustomSetting(array $postData=[]);
  8. public function updateSMTPSetting(array $postData = []);
  9. public function testSMTPSetting(array $postData = []);
  10. }