RemovableDependentPluginReturn.php

Namespace

Drupal\Core\Plugin

File

core/lib/Drupal/Core/Plugin/RemovableDependentPluginReturn.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Core\Plugin;


/**
 * Enumeration of return values when acting on plugin dependency removal.
 *
 * @see \Drupal\Core\Plugin\RemovableDependentPluginInterface::onCollectionDependencyRemoval()
 */
enum RemovableDependentPluginReturn
{
  case Changed;
  case Remove;
  case Unchanged;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.