mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-30 06:11:38 +08:00
20 lines
265 B
PHP
20 lines
265 B
PHP
<?php
|
|
|
|
namespace App\Services\Frontend\Messenger;
|
|
|
|
use App\Services\Frontend\Service as FrontendService;
|
|
|
|
class ContactList extends FrontendService
|
|
{
|
|
|
|
public function handle()
|
|
{
|
|
$user = $this->getLoginUser();
|
|
|
|
$mine = [
|
|
|
|
];
|
|
}
|
|
|
|
}
|