HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/topswtwmobile.komma.pro/app/KommaApp/Shop/ShopServiceProvider.php
<?php namespace KommaApp\Shop;

use Illuminate\Support\ServiceProvider;

class ShopServiceProvider extends ServiceProvider
{
	/**
	 * Bootstrap the application events.
	 *
	 * @return void
	 */
	public function boot()
	{
		require app_path() . '/routes.php';

		$this->app->make('KommaApp\Shop\Routes\RouteResolver')->resolve();
        $this->commands('cron.tops');
	}

	/**
	 * Register the service provider.
	 *
	 * @return void
	 */
	public function register()
	{
		// Shop
		$this->app->bind('shop','KommaApp\Shop\Shop');
		$this->app->bind('format','KommaApp\Shop\Format');
        $this->app->bind('cron.tops', '\KommaApp\Shop\Cron\TopsCronHandler');
	}
}