File "RequestProvider.php"

Full Path: /home/cnerdvmd/public_html/wp-content/plugins/fluentform/framework/Request/RequestProvider.php
File size: 446 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace FluentForm\Framework\Request;

use FluentForm\Framework\Foundation\Provider;

class RequestProvider extends Provider
{
	public function booting() {}

	/**
     * The provider booting method to boot this provider
     * @return void
     */
	public function booted()
	{
		$this->app->bindInstance(
			'request',
			new Request($this->app, $_GET, $_POST, $_FILES),
			'Request',
			'FluentForm\Framework\Request\Request'
		);
	}
}