mirror of
https://github.com/PGYER/codefever.git
synced 2026-05-07 22:18:21 +08:00
18 lines
334 B
PHP
Executable File
18 lines
334 B
PHP
Executable File
<?php
|
|
|
|
namespace service\EventHandler;
|
|
|
|
use service\Event\Event;
|
|
|
|
class DemoEventHandler extends EventHandler {
|
|
|
|
public function onCreated (Event $event) {
|
|
// demo code
|
|
// $query = $this->CI->db->get('users');
|
|
// var_dump($query->row_array());
|
|
// var_dump($event);
|
|
// echo $event;
|
|
}
|
|
|
|
}
|