You are here

public static function ExistingUser::getSubscribedEvents in Acquia Content Hub 8.2

File

src/EventSubscriber/Cdf/ExistingUser.php, line 24

Class

ExistingUser
Prevent user name conflicts.

Namespace

Drupal\acquia_contenthub\EventSubscriber\Cdf

Code

public static function getSubscribedEvents() {
  $events[AcquiaContentHubEvents::PARSE_CDF][] = [
    'onParseCdf',
    90,
  ];
  return $events;
}