Skip to content
  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in
Logo1

hfpp2012 / tinyshop-docker

Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • tinyshop-docker
  • tinyshop
  • html
  • framework
  • base
  • event_class.php
  • yinsigan's avatar
    fix commit · b783526e
    yinsigan committed Mar 22, 2017
    b783526e
event_class.php 411 Bytes
RawBlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?php
/**
 * Tiny - A PHP Framework For Web Artisans
 * @author Tiny <tinylofty@gmail.com>
 * @copyright Copyright(c) 2010-2014 http://www.tinyrise.com All rights reserved
 * @version 1.0
 */
/**
 * 事件处理类
 * 
 * @author Tiny
 * @class Event
 */
class Event
{
	public $sender;

	public $handled = false;

	public function __construct($sender)
	{
		$this->sender = $sender;
	}
}