koel/app/Providers/UtilServiceProvider.php

32 lines
506 B
PHP
Raw Normal View History

2015-12-17 17:56:48 +00:00
<?php
namespace App\Providers;
use App\Services\Util;
use Illuminate\Support\ServiceProvider;
class UtilServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register the application services.
*
* @return void
*/
public function register()
{
app()->singleton('Util', function () {
return new Util();
});
}
}