Skip to content

Instantly share code, notes, and snippets.

@EmmanuelObua
Last active August 26, 2022 13:13
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 EmmanuelObua/de7cacd6f524b3601ff5060bd774678d to your computer and use it in GitHub Desktop.
Save EmmanuelObua/de7cacd6f524b3601ff5060bd774678d to your computer and use it in GitHub Desktop.
<?php
namespace LdTalent\Pwa;
use Illuminate\Support\Facades\Facade;
class PwaFacade extends Facade
{
/**
* Get the binding in the IoC container.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'pwa-laravel';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment