HEX
Server: Apache
System: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
User: u106391720 (10342218)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /homepages/34/d890102484/htdocs/wp-content/plugins/fluentform/framework/View/ViewProvider.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');
	}
}