Create ProxyHelperFacade.php

This commit is contained in:
juanal98
2020-05-23 01:00:41 +02:00
committed by GitHub
parent 591873bc73
commit 5d2085e5c0
+12
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";
}
}