- <?php
- namespace App\Facades;
- use Illuminate\Support\Facades\Facade;
- /**
- * @method static array getNotification(string $xml, $request);
- */
- class WxNotificationFacade extends Facade
- {
- protected static function getFacadeAccessor(){
- return 'WxNotificationFacadeRepository';
- }
- }
|