| 1 | <?php |
||
| 31 | class QRCode extends AbstractMiniProgram |
||
| 32 | { |
||
| 33 | /** |
||
| 34 | * API. |
||
| 35 | */ |
||
| 36 | const API_CREATE_QRCODE = 'https://api.weixin.qq.com/cgi-bin/wxaapp/createwxaqrcode'; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Create mini program qrcode. |
||
| 40 | * |
||
| 41 | * @param $path |
||
| 42 | * @param int $width |
||
| 43 | * |
||
| 44 | * @return \EasyWeChat\Support\Collection |
||
| 45 | */ |
||
| 46 | public function create($path, $width = 430) |
||
| 50 | } |
||
| 51 |