From 426c444d1b276e670893eaf81dd4c0320c2d30da Mon Sep 17 00:00:00 2001
From: JojoVes <JojoVes@users.noreply.github.com>
Date: Thu, 26 Jan 2023 16:31:04 -0400
Subject: [PATCH] Replace deprecated 'context' condition annotation with
 'context_definitions'

There was a cleanup done for this deprecation in https://github.com/Islandora/islandora/pull/764
before the 'NodeReferencedByNode' condition was made, then the deprecated annotation must have
just been missed in reviewing https://github.com/Islandora/islandora/pull/808.
---
 src/Plugin/Condition/NodeReferencedByNode.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Plugin/Condition/NodeReferencedByNode.php b/src/Plugin/Condition/NodeReferencedByNode.php
index a2abac80..c5611a3e 100644
--- a/src/Plugin/Condition/NodeReferencedByNode.php
+++ b/src/Plugin/Condition/NodeReferencedByNode.php
@@ -16,7 +16,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
  * @Condition(
  *   id = "node_referenced_by_node",
  *   label = @Translation("Node is referenced by other nodes"),
- *   context = {
+ *   context_definitions = {
  *     "node" = @ContextDefinition("entity:node", required = TRUE , label = @Translation("node"))
  *   }
  * )