| 1 | <?php | ||
| 7 | class TransitionEvent extends BaseTransitionEvent | ||
| 8 | { | ||
| 9 | /** | ||
| 10 | * @var array | ||
| 11 | */ | ||
| 12 | protected $context = []; | ||
| 13 | |||
| 14 | /** | ||
| 15 | * @param array $context | ||
| 16 | * @return void | ||
| 17 | */ | ||
| 18 | public function setContext(array $context) | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @return array | ||
| 25 | */ | ||
| 26 | public function getContext() | ||
| 30 | } | ||
| 31 |