App\Ninja\Repositories\InvoiceRepository::__construct PHP Method

__construct() public method

public __construct ( PaymentService $paymentService, DocumentRepository $documentRepo )
$paymentService App\services\PaymentService
$documentRepo DocumentRepository
    public function __construct(PaymentService $paymentService, DocumentRepository $documentRepo)
    {
        $this->documentRepo = $documentRepo;
        $this->paymentService = $paymentService;
    }