Files
Phraseanet/lib/Alchemy/Phrasea/Core/Event/DataboxRelated.php
Jean-Yves Gaulier 304e5d0849 #PHRAS-741 #time 1m
add forgotten files...
2015-10-28 15:34:13 +01:00

30 lines
619 B
PHP

<?php
namespace Alchemy\Phrasea\Core\Event;
use Symfony\Component\EventDispatcher\Event;
class DataboxRelated extends Event
{
/** @var \databox|null $databox */
private $databox;
/** @var array|null $args supplemental parameters specific to an inherited event class */
protected $args;
/**
* @param \databox|null $databox
* @param array|null $args
*/
public function __construct(\databox $databox, array $args = null)
{
$this->databox = $databox;
$this->args = $args;
}
public function getDatabox()
{
return $this->databox;
}
}