# fluentform/1.7.5/framework/Request/RequestProvider.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 1.7.5. 27 lines.

- Page: https://pluginprobe.com/plugins/fluentform/1.7.5/code/framework/Request/RequestProvider.php
- Raw: https://pluginprobe.com/plugins/fluentform/1.7.5/raw/framework/Request/RequestProvider.php
- Modified: 2018-11-19T14:09:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluentform/1.7.5/code/framework/Request/RequestProvider.php#L10-L20`.

```php
<?php

namespace FluentForm\Framework\Request;

use FluentForm\Framework\Foundation\Provider;

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

```
