jingcai-php/app/Http/Controllers/AppController.php

18 lines
431 B
PHP
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

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);
}
}