UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_2ae1a8506d80
/
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 * @package EstudioLMS\Http\Controllers\Cart */ class BoletoController extends Controller { /** * @var BoletoService */ private $boletoService; /** * BoletoController constructor. * @param BoletoService $boletoService */ public function __construct( BoletoService $boletoService ) { $this->boletoService = $boletoService; } /** * @return \Illuminate\Contracts\View\Factory|\Illuminate\Http\RedirectResponse|\Illuminate\View\View */ public function checkoutBoleto() { return $this->boletoService->payWithBoleto(); } /** * @param $code * @param int $installment * @return string * @throws \Exception */ public function makeBoleto($code, $installment = 1) { return $this->boletoService->makeBillet($code, $installment); } /** * @param $code * @param int $installment * @throws \Exception */ public function fakeRetorno($code, $installment = 1) { return $this->boletoService->fakeRetorno($code, $installment); } }
Copyright © 2026 - UnknownSec