Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Last active June 13, 2021 09:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cursosdesarrolloweb/21b628ef1822b3e472adfb4740afa1ea to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/21b628ef1822b3e472adfb4740afa1ea to your computer and use it in GitHub Desktop.
<?php
namespace App\Providers;
use App\Cursosdesarrolloweb\Cursosdesarrolloweb;
use Illuminate\Support\ServiceProvider;
/**
* Class CursosdesarrollowebServiceProvider
* @package App\Providers
*/
class CursosdesarrollowebServiceProvider extends ServiceProvider
{
public $bindings = [
"cursosdesarrolloweb" => Cursosdesarrolloweb::class
];
/**
* Register services.
*
* @return void
*/
public function register()
{
//
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment