mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-07-23 08:26:40 +08:00
19 lines
265 B
PHP
19 lines
265 B
PHP
<?php
|
|
|
|
namespace App\Listeners;
|
|
|
|
use App\Models\User as UserModel;
|
|
use App\Traits\Client as ClientTrait;
|
|
use Phalcon\Events\Event;
|
|
|
|
class User extends Listener
|
|
{
|
|
|
|
use ClientTrait;
|
|
|
|
public function view(Event $event, $source, UserModel $user)
|
|
{
|
|
|
|
}
|
|
|
|
} |