Skip to content

Instantly share code, notes, and snippets.

@codemonkey76
Created July 20, 2020 23:38
Show Gist options
  • Save codemonkey76/de51d9d15994a23ce95407c6b29720c9 to your computer and use it in GitHub Desktop.
Save codemonkey76/de51d9d15994a23ce95407c6b29720c9 to your computer and use it in GitHub Desktop.
Fusion Api Facade
<?php
namespace App\Facades;
use Illuminate\Support\Facades\Facade;
class FusionApiFacade extends Facade
{
protected static function getFacadeAccessor() {
return 'FusionApi';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment