# fluentform/1.2.4/framework/View/ViewProvider.php

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

- Page: https://pluginprobe.com/plugins/fluentform/1.2.4/code/framework/View/ViewProvider.php
- Raw: https://pluginprobe.com/plugins/fluentform/1.2.4/raw/framework/View/ViewProvider.php
- Modified: 2017-12-29T16:40:50+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.2.4/code/framework/View/ViewProvider.php#L10-L20`.

```php
<?php

namespace FluentForm\Framework\View;

use FluentForm\Framework\Foundation\Provider;

class ViewProvider extends Provider
{
	/**
     * The provider booting method to boot this provider
     * @return void
     */
	public function booting()
	{
		$this->app->bind('view', function($app) {
			return new View($app);
		}, 'View', 'FluentForm\Framework\View\View');
	}
}

```
