Skip to content
Snippets Groups Projects

Issue #3268612: StageValidationException does not provide a message based on validation results

Merged Issue #3268612: StageValidationException does not provide a message based on validation results
1 unresolved thread
1 unresolved thread
4 files
+ 15
9
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -103,6 +103,15 @@ class TestSubscriber implements EventSubscriberInterface {
}
}
/**
* Computes the state key to use for a given event class.
*
* @param string $event
* The event class.
*
* @return string
* The state key under which to store the results for the given event.
*/
protected static function getStateKey(string $event) {
$parts = explode('\\', $event);
return static::STATE_KEY . array_pop($parts);
Loading