Create ProxyHelperFacade.php

This commit is contained in:
juanal98 2020-05-23 01:00:41 +02:00 committed by GitHub
parent 591873bc73
commit 5d2085e5c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
ProxyHelperFacade.php Normal file
View File

@ -0,0 +1,12 @@
<?php
namespace App\Helpers;
use Illuminate\Support\Facades\Facade;
class ProxyHelperFacade extends Facade {
protected static function getFacadeAccessor(){
return "ProxyHelper";
}
}