Subiendo proyecto completo sin restricciones de git ignore

This commit is contained in:
Jose Sanchez
2023-08-17 11:44:02 -04:00
parent a0d4f5ba3b
commit 20f1c60600
19921 changed files with 2509159 additions and 45 deletions

View File

@@ -0,0 +1,29 @@
<?php
namespace Tests\Stubs;
use Illuminate\Http\Request as BaseRequest;
class Request extends BaseRequest {
public $email;
public $amount;
public $country;
public $currency;
public $lastname;
public $firstname;
public $phonenumber;
public $description;
public $payment_method;
public $pay_button_text;
function __construct( ) {
$data = (array) include __DIR__ . "/request_data.php";
array_walk($data["form"], function($value, $key) {
$this->{$key} = $value;
});
}
}