Skip to content

Instantly share code, notes, and snippets.

@cursosdesarrolloweb
Created June 13, 2021 09:19
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/49f4c443df80b2b6e376dec9f36477f1 to your computer and use it in GitHub Desktop.
Save cursosdesarrolloweb/49f4c443df80b2b6e376dec9f36477f1 to your computer and use it in GitHub Desktop.
<?php
namespace App\Cursosdesarrolloweb;
use Illuminate\Support\Facades\Facade;
/**
* Class CursosdesarrollowebFacade
* @package App\Cursosdesarrolloweb
*/
class CursosdesarrollowebFacade extends Facade {
/**
* @return string
*/
public static function getFacadeAccessor(): string
{
return "cursosdesarrolloweb";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment