rbrecruiter/app/Providers/JSONProvider.php

32 lines
458 B
PHP
Raw Normal View History

2021-03-29 22:47:55 +00:00
<?php
namespace App\Providers;
use App\Helpers\JSON;
use Illuminate\Support\ServiceProvider;
class JSONProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
App::bind('json', function () {
return new JSON();
});
}
}