CashService.php 286 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Services;
  3. use App\Http\logic\api\WiwiPayCashierLogic;
  4. class CashService
  5. {
  6. public static function payment($val)
  7. {
  8. switch ($val) {
  9. case WiwiPayCashierLogic::AGENT:
  10. return new WiwiPayCashierLogic();
  11. }
  12. }
  13. }