<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\queue;
/**
* Push Event.
*
* @author Roman Zhuravlev <zhuravljov@gmail.com>
*/
class PushEvent extends JobEvent
{
/**
* @var int
*/
public $delay;
/**
* @var mixed
*/
public $priority;
}