quiz_maker-1.0.6/src/Event/ResponseEvents.php
src/Event/ResponseEvents.php
<?php
namespace Drupal\quiz_maker\Event;
/**
* Response events class.
*/
final class ResponseEvents {
/**
* Name of event when user answer on question and response was created.
*
* @Event
*
* @see \Drupal\quiz_maker\Event\ResponseEvent
*/
const RESPONSE_CREATE = 'response.create';
/**
* Name of event when user answer on question and response was created.
*
* @Event
*
* @see \Drupal\quiz_maker\Event\ResponseEvent
*/
const RESPONSE_UPDATE = 'response.update';
}
