mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-07-13 03:49:11 +08:00
24 lines
442 B
PHP
24 lines
442 B
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace App\Listeners;
|
|
|
|
use App\Models\User as UserModel;
|
|
use App\Traits\Client as ClientTrait;
|
|
use Phalcon\Events\Event as PhEvent;
|
|
|
|
class Site extends Listener
|
|
{
|
|
|
|
use ClientTrait;
|
|
|
|
public function afterView(PhEvent $event, $source, UserModel $user)
|
|
{
|
|
|
|
}
|
|
|
|
} |