The eca_token_set_value plugin's access() method mistakenly tries to access a `value` element
>>> [!note] Migrated issue <!-- Drupal.org comment --> <!-- Migrated from issue #3558521. --> Reported by: [phenaproxima](https://www.drupal.org/user/205645) Related to !567 >>> <h3 id="summary-problem-motivation">Problem/Motivation</h3> <p>This is probably just an oversight from some earlier version of ECA's codebase, but <code>\Drupal\eca_base\Plugin\Action\TokenSetValue::access()</code> has this line:</p> <pre>$this-&gt;yamlParser-&gt;parse($this-&gt;configuration['value']);</pre><p>That <code>value</code> isn't a thing. The proper config key is <code>token_value</code>. This will actually cause a TypeError exception when the parser is given NULL instead of a string.</p>
issue