diff --git a/core/modules/workflows/src/Annotation/WorkflowType.php b/core/modules/workflows/src/Annotation/WorkflowType.php index 755ac706d0..da8e1006b6 100644 --- a/core/modules/workflows/src/Annotation/WorkflowType.php +++ b/core/modules/workflows/src/Annotation/WorkflowType.php @@ -16,10 +16,6 @@ * @see plugin_api * * @Annotation - * - * @internal - * The workflow system is currently experimental and should only be leveraged - * by experimental modules and development releases of contributed modules. */ class WorkflowType extends Plugin { diff --git a/core/modules/workflows/src/Entity/Workflow.php b/core/modules/workflows/src/Entity/Workflow.php index 5055114f2d..08d0969cd7 100644 --- a/core/modules/workflows/src/Entity/Workflow.php +++ b/core/modules/workflows/src/Entity/Workflow.php @@ -56,10 +56,6 @@ * "type_settings" * }, * ) - * - * @internal - * The workflow system is currently experimental and should only be leveraged - * by experimental modules and development releases of contributed modules. */ class Workflow extends ConfigEntityBase implements WorkflowInterface, EntityWithPluginCollectionInterface { diff --git a/core/modules/workflows/src/Plugin/WorkflowTypeBase.php b/core/modules/workflows/src/Plugin/WorkflowTypeBase.php index b7e18d9dd9..572365f6f8 100644 --- a/core/modules/workflows/src/Plugin/WorkflowTypeBase.php +++ b/core/modules/workflows/src/Plugin/WorkflowTypeBase.php @@ -16,10 +16,6 @@ * A base class for Workflow type plugins. * * @see \Drupal\workflows\Annotation\WorkflowType - * - * @internal - * The workflow system is currently experimental and should only be leveraged - * by experimental modules and development releases of contributed modules. */ abstract class WorkflowTypeBase extends PluginBase implements WorkflowTypeInterface { diff --git a/core/modules/workflows/src/State.php b/core/modules/workflows/src/State.php index f6a377ba0f..2553337330 100644 --- a/core/modules/workflows/src/State.php +++ b/core/modules/workflows/src/State.php @@ -4,10 +4,6 @@ /** * A value object representing a workflow state. - * - * @internal - * The workflow system is currently experimental and should only be leveraged - * by experimental modules and development releases of contributed modules. */ class State implements StateInterface { diff --git a/core/modules/workflows/src/StateInterface.php b/core/modules/workflows/src/StateInterface.php index 5a5442bb1d..771658cd25 100644 --- a/core/modules/workflows/src/StateInterface.php +++ b/core/modules/workflows/src/StateInterface.php @@ -4,10 +4,6 @@ /** * An interface for state value objects. - * - * @internal - * The workflow system is currently experimental and should only be leveraged - * by experimental modules and development releases of contributed modules. */ interface StateInterface { diff --git a/core/modules/workflows/src/Transition.php b/core/modules/workflows/src/Transition.php index 38d5dbac03..233f28bdf5 100644 --- a/core/modules/workflows/src/Transition.php +++ b/core/modules/workflows/src/Transition.php @@ -4,10 +4,6 @@ /** * A transition value object that describes the transition between states. - * - * @internal - * The workflow system is currently experimental and should only be leveraged - * by experimental modules and development releases of contributed modules. */ class Transition implements TransitionInterface { diff --git a/core/modules/workflows/src/TransitionInterface.php b/core/modules/workflows/src/TransitionInterface.php index 14f6d1487c..7db34e8dd9 100644 --- a/core/modules/workflows/src/TransitionInterface.php +++ b/core/modules/workflows/src/TransitionInterface.php @@ -4,10 +4,6 @@ /** * A transition value object that describes the transition between two states. - * - * @internal - * The workflow system is currently experimental and should only be leveraged - * by experimental modules and development releases of contributed modules. */ interface TransitionInterface { diff --git a/core/modules/workflows/src/WorkflowAccessControlHandler.php b/core/modules/workflows/src/WorkflowAccessControlHandler.php index 71274c0e32..ff20468cbf 100644 --- a/core/modules/workflows/src/WorkflowAccessControlHandler.php +++ b/core/modules/workflows/src/WorkflowAccessControlHandler.php @@ -15,10 +15,6 @@ * Access controller for the Moderation State entity. * * @see \Drupal\workflows\Entity\Workflow. - * - * @internal - * The workflow system is currently experimental and should only be leveraged - * by experimental modules and development releases of contributed modules. */ class WorkflowAccessControlHandler extends EntityAccessControlHandler implements EntityHandlerInterface { diff --git a/core/modules/workflows/src/WorkflowInterface.php b/core/modules/workflows/src/WorkflowInterface.php index f9a61a42ce..fc2f011054 100644 --- a/core/modules/workflows/src/WorkflowInterface.php +++ b/core/modules/workflows/src/WorkflowInterface.php @@ -6,10 +6,6 @@ /** * Provides an interface for defining workflow entities. - * - * @internal - * The workflow system is currently experimental and should only be leveraged - * by experimental modules and development releases of contributed modules. */ interface WorkflowInterface extends ConfigEntityInterface { diff --git a/core/modules/workflows/src/WorkflowTypeInterface.php b/core/modules/workflows/src/WorkflowTypeInterface.php index 9fd1a9a115..1762712497 100644 --- a/core/modules/workflows/src/WorkflowTypeInterface.php +++ b/core/modules/workflows/src/WorkflowTypeInterface.php @@ -9,10 +9,6 @@ /** * An interface for Workflow type plugins. - * - * @internal - * The workflow system is currently experimental and should only be leveraged - * by experimental modules and development releases of contributed modules. */ interface WorkflowTypeInterface extends PluginWithFormsInterface, DerivativeInspectionInterface, ConfigurablePluginInterface { diff --git a/core/modules/workflows/src/WorkflowTypeManager.php b/core/modules/workflows/src/WorkflowTypeManager.php index b2eafa863b..457b36d5da 100644 --- a/core/modules/workflows/src/WorkflowTypeManager.php +++ b/core/modules/workflows/src/WorkflowTypeManager.php @@ -13,10 +13,6 @@ * @see \Drupal\workflows\Annotation\WorkflowType * @see \Drupal\workflows\WorkflowTypeInterface * @see plugin_api - * - * @internal - * The workflow system is currently experimental and should only be leveraged - * by experimental modules and development releases of contributed modules. */ class WorkflowTypeManager extends DefaultPluginManager { diff --git a/core/modules/workflows/workflows.info.yml b/core/modules/workflows/workflows.info.yml index 0089a123d8..fd92903507 100644 --- a/core/modules/workflows/workflows.info.yml +++ b/core/modules/workflows/workflows.info.yml @@ -3,5 +3,5 @@ type: module description: 'Provides UI and API for managing workflows. This module can be used with the Content moderation module to add highly customisable workflows to content.' version: VERSION core: 8.x -package: Core (Experimental) +package: Core configure: entity.workflow.collection