File "PaymentTransactionRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/PaymentTransaction/PaymentTransactionRepository.php
File size: 339 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\PaymentTransaction;
use App\Models\PaymentTransaction;
use App\Repositories\Saas\SaaSRepository;
class PaymentTransactionRepository extends SaaSRepository implements PaymentTransactionInterface {
public function __construct(PaymentTransaction $model) {
parent::__construct($model);
}
}