|
@@ -19,7 +19,10 @@ class WechatTransferSvc
|
|
|
{
|
|
|
$this->mchid=config('site.mch_id');
|
|
|
$this->appid=config('site.sender_appid');
|
|
|
- $this->serial_no=file_get_contents(self::filePath('serial_no'));
|
|
|
+ $serial_path=self::filePath('serial_no');
|
|
|
+ if(file_exists($serial_path)) {
|
|
|
+ $this->serial_no = file_get_contents($serial_path);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
public static function client(){
|