_usedProperties['name'] = true; $this->name = $value; return $this; } /** * An expression to block the transition * @example is_fully_authenticated() and is_granted('ROLE_JOURNALIST') and subject.getTitle() == 'My first article' * @default null * @param ParamConfigurator|mixed $value * @return $this */ public function guard($value): static { $this->_usedProperties['guard'] = true; $this->guard = $value; return $this; } /** * @param ParamConfigurator|list|string $value * * @return $this */ public function from(ParamConfigurator|string|array $value): static { $this->_usedProperties['from'] = true; $this->from = $value; return $this; } /** * @param ParamConfigurator|list|string $value * * @return $this */ public function to(ParamConfigurator|string|array $value): static { $this->_usedProperties['to'] = true; $this->to = $value; return $this; } /** * @param ParamConfigurator|list $value * * @return $this */ public function metadata(ParamConfigurator|array $value): static { $this->_usedProperties['metadata'] = true; $this->metadata = $value; return $this; } public function __construct(array $value = []) { if (array_key_exists('name', $value)) { $this->_usedProperties['name'] = true; $this->name = $value['name']; unset($value['name']); } if (array_key_exists('guard', $value)) { $this->_usedProperties['guard'] = true; $this->guard = $value['guard']; unset($value['guard']); } if (array_key_exists('from', $value)) { $this->_usedProperties['from'] = true; $this->from = $value['from']; unset($value['from']); } if (array_key_exists('to', $value)) { $this->_usedProperties['to'] = true; $this->to = $value['to']; unset($value['to']); } if (array_key_exists('metadata', $value)) { $this->_usedProperties['metadata'] = true; $this->metadata = $value['metadata']; unset($value['metadata']); } if ([] !== $value) { throw new InvalidConfigurationException(sprintf('The following keys are not supported by "%s": ', __CLASS__).implode(', ', array_keys($value))); } } public function toArray(): array { $output = []; if (isset($this->_usedProperties['name'])) { $output['name'] = $this->name; } if (isset($this->_usedProperties['guard'])) { $output['guard'] = $this->guard; } if (isset($this->_usedProperties['from'])) { $output['from'] = $this->from; } if (isset($this->_usedProperties['to'])) { $output['to'] = $this->to; } if (isset($this->_usedProperties['metadata'])) { $output['metadata'] = $this->metadata; } return $output; } }