1234567891011121314151617181920212223242526 |
- <?php namespace App\Facades\Servers\Encrypts;
- use Illuminate\Support\Facades\Facade;
- /**
- * 接口签名
- *
- * @staticmethod array encode( array $contents ,string $appid, string $appkey) 加密
- *
- * @see \App\Servers\Encrypts\ApiSign
- *
- */
- class ApiSign extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\Encrypts\ApiSign';
- }
- }
- ?>
|