ok

Mini Shell

Direktori : /home2/selectio/public_html/myclassicfit.com/vendor/kingflamez/laravelrave/tests/Stubs/
Upload File :
Current File : /home2/selectio/public_html/myclassicfit.com/vendor/kingflamez/laravelrave/tests/Stubs/Request.php

<?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;
        });
    }
}

Zerion Mini Shell 1.0