This repository has been archived on 2025-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
Files
rbrecruiter/app/Providers/DigitalStorageProvider.php
2020-11-02 21:44:05 +00:00

32 lines
509 B
PHP

<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use App;
class DigitalStorageProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap services.
*
* @return void
*/
public function boot()
{
App::bind('digitalStorageHelperFacadeRoot', function (){
return new App\Helpers\DigitalStorageHelper();
});
}
}