File "ViewProvider.php"

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

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