mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-25 20:17:23 +08:00
41 lines
735 B
PHP
41 lines
735 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\Help as HelpModel;
|
|
use Phalcon\Events\Event as PhEvent;
|
|
|
|
class Help extends Listener
|
|
{
|
|
|
|
public function afterCreate(PhEvent $event, $source, HelpModel $help)
|
|
{
|
|
|
|
}
|
|
|
|
public function afterUpdate(PhEvent $event, $source, HelpModel $help)
|
|
{
|
|
|
|
}
|
|
|
|
public function afterDelete(PhEvent $event, $source, HelpModel $help)
|
|
{
|
|
|
|
}
|
|
|
|
public function afterRestore(PhEvent $event, $source, HelpModel $help)
|
|
{
|
|
|
|
}
|
|
|
|
public function afterView(PhEvent $event, $source, HelpModel $help)
|
|
{
|
|
|
|
}
|
|
|
|
} |