UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_b085ce746e14
/
app
/
Http
/
Controllers
/
Cart
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
BoletoController.php
<?php namespace EstudioLMS\Http\Controllers\Cart; use EstudioLMS\Services\Hires\BoletoService; use Illuminate\Http\Request; use EstudioLMS\Http\Requests; use EstudioLMS\Http\Controllers\Controller; class BoletoController extends Controller { /** * @var BoletoService */ private $boletoService; /** * BoletoController constructor. * @param BoletoService $boletoService */ public function __construct( BoletoService $boletoService ) { $this->boletoService = $boletoService; } public function checkoutBoleto() { return $this->boletoService->payWithBoleto(); } public function makeBoleto($code, $installment = 1) { return $this->boletoService->makeBillet($code, $installment); } public function fakeRetorno($code, $installment = 1) { return $this->boletoService->fakeRetorno($code, $installment); } }
Copyright © 2026 - UnknownSec