App\Http\Controllers\PaymentApiController::__construct PHP Method

__construct() public method

public __construct ( PaymentRepository $paymentRepo, ContactMailer $contactMailer )
$paymentRepo App\Ninja\Repositories\PaymentRepository
$contactMailer App\Ninja\Mailers\ContactMailer
    public function __construct(PaymentRepository $paymentRepo, ContactMailer $contactMailer)
    {
        parent::__construct();
        $this->paymentRepo = $paymentRepo;
        $this->contactMailer = $contactMailer;
    }