WxNotificationFacade.php 296 B

123456789101112131415
  1. <?php
  2. namespace App\Facades;
  3. use Illuminate\Support\Facades\Facade;
  4. /**
  5. * @method static array getNotification(string $xml, $request);
  6. */
  7. class WxNotificationFacade extends Facade
  8. {
  9. protected static function getFacadeAccessor(){
  10. return 'WxNotificationFacadeRepository';
  11. }
  12. }