AiVideoController.php 606 字节
<?php
/**
 * @remark :
 * @name   :AiVideoController.php
 * @author :lyh
 * @method :post
 * @time   :2025/8/2 11:18
 */

namespace App\Http\Controllers\Api;

use App\Enums\Common\Code;

class AiVideoController extends BaseController
{
    /**
     * @remark :回调方法
     * @name   :ImageCallBack
     * @author :lyh
     * @method :post
     * @time   :2025/8/2 11:19
     */
    public function ImageCallBack(){
        $data = $this->param;
        @file_put_contents(storage_path('logs/lyh_error.log'), var_export($data, true) . PHP_EOL, FILE_APPEND);
        $this->response('success');
    }
}