ifthenelse-8.x-1.x-dev-no-core/modules/contrib/if_then_else/src/Event/EventConditionEvent.php
modules/contrib/if_then_else/src/Event/EventConditionEvent.php
<?php
namespace Drupal\if_then_else\Event;
use Symfony\Component\EventDispatcher\Event;
/**
*
*/
class EventConditionEvent extends Event {
/**
* @var \stdClass
* Graph data
*/
public $data;
/**
* @var array
*/
public $conditions;
/**
* GraphValidationEvent constructor.
*
* @param $data
* Graph data.
*/
public function __construct($data) {
$this->data = $data;
$this->conditions = [];
}
}
