summaryrefslogtreecommitdiffstats
path: root/workers/queue/queueitem.class.php
blob: b4c3d86e8901be5dcdcb0a326193ffc48b3106f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
namespace gateway\workers\queue;

/**
 * Generic class for all queue items. Not much to see here
 * @author hd@onlinecity.dk
 */
abstract class QueueItem implements \Serializable
{
	const TYPE=0;
}