mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-13 16:03:04 +00:00
1. 修复节点信息获取错误的问题 2. 优化首页公告显示 3. 修复回复工单时按回车导致报错的问题 4. 修改用户编辑与添加排版 5. 修复潜在的IE兼容问题 6. 统一Table元素格式 7. 优化返利界面 8. 添加了封禁时间倒计时 9. 对非付费用户,首页添加提示购买宣传语
34 lines
915 B
PHP
34 lines
915 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Console Commands
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This option allows you to add additional Artisan commands that should
|
|
| be available within the Tinker environment. Once the command is in
|
|
| this array you may execute the command in Tinker using its name.
|
|
|
|
|
*/
|
|
|
|
'commands' => [
|
|
// App\Console\Commands\ExampleCommand::class,
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Alias Blacklist
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Typically, Tinker automatically aliases classes as you require them in
|
|
| Tinker. However, you may wish to never alias certain classes, which
|
|
| you may accomplish by listing the classes in the following array.
|
|
|
|
|
*/
|
|
|
|
'dont_alias' => [],
|
|
|
|
];
|