BarobillSmsService.php 298 B

1234567891011121314
  1. <?php
  2. namespace App\ThirdPartyApi\Barobill\Services;
  3. use App\Services\CallApiService;
  4. use App\ThirdPartyApi\Barobill\Barobill;
  5. class BarobillSmsService extends Barobill
  6. {
  7. public function __construct(CallApiService $callApiService)
  8. {
  9. parent::__construct($callApiService);
  10. }
  11. }