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

__construct() public method

PaymentController constructor.
public __construct ( PaymentRepository $paymentRepo, ContactMailer $contactMailer, PaymentService $paymentService )
$paymentRepo App\Ninja\Repositories\PaymentRepository
$contactMailer App\Ninja\Mailers\ContactMailer
$paymentService App\services\PaymentService
    public function __construct(PaymentRepository $paymentRepo, ContactMailer $contactMailer, PaymentService $paymentService)
    {
        $this->paymentRepo = $paymentRepo;
        $this->contactMailer = $contactMailer;
        $this->paymentService = $paymentService;
    }