PayConfig.php 296 B

1234567891011121314151617
  1. <?php
  2. namespace App\Services;
  3. class PayConfig
  4. {
  5. protected $production = 'pay';
  6. protected $test = 'payTest';
  7. public function getConfig($key)
  8. {
  9. $isTest = env('IS_TEST', 0);
  10. return $isTest ? config("$this->test.$key") : config("$this->production.$key");
  11. }
  12. }