| 12345678910111213141516171819 |
- <?php
- namespace app\common\components\alipay\Facades;
- use Illuminate\Support\Facades\Facade;
- class AlipayWeb extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return 'alipay.web';
- }
- }
|