mirror of
https://github.com/lkddi/Xboard.git
synced 2026-04-28 14:57:22 +08:00
Revert "fix: resolve PHPStan static analysis warnings"
This reverts commit 2d3e4b4a95.
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
namespace App\Http\Routes\V1;
|
||||
|
||||
use Illuminate\Contracts\Routing\Registrar;
|
||||
|
||||
class StaffRoute
|
||||
{
|
||||
public function map(Registrar $router)
|
||||
{
|
||||
$router->group([
|
||||
'prefix' => 'staff',
|
||||
'middleware' => 'staff'
|
||||
], function ($router) {
|
||||
// Ticket
|
||||
// $router->get ('/ticket/fetch', 'V1\\Staff\\TicketController@fetch');
|
||||
// $router->post('/ticket/reply', 'V1\\Staff\\TicketController@reply');
|
||||
// $router->post('/ticket/close', 'V1\\Staff\\TicketController@close');
|
||||
// // User
|
||||
// $router->post('/user/update', 'V1\\Staff\\UserController@update');
|
||||
// $router->get ('/user/getUserInfoById', 'V1\\Staff\\UserController@getUserInfoById');
|
||||
// $router->post('/user/sendMail', 'V1\\Staff\\UserController@sendMail');
|
||||
// $router->post('/user/ban', 'V1\\Staff\\UserController@ban');
|
||||
// // Plan
|
||||
// $router->get ('/plan/fetch', 'V1\\Staff\\PlanController@fetch');
|
||||
// // Notice
|
||||
// $router->get ('/notice/fetch', 'V1\\Admin\\NoticeController@fetch');
|
||||
// $router->post('/notice/save', 'V1\\Admin\\NoticeController@save');
|
||||
// $router->post('/notice/update', 'V1\\Admin\\NoticeController@update');
|
||||
// $router->post('/notice/drop', 'V1\\Admin\\NoticeController@drop');
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user