This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<?php
namespace App\Http\Controllers;
class AppController extends Controller
{
public function upgrade()
$data = [
'content' => '用户您好,由于服务器升级,需要在2023年09月30日0点暂停服务,时长预计半个小时,给您带来的不便,敬请谅解!',
'upgrade' => false,
'id' => 1,
];
return $this->jsonSuccess($data);
}