| 1 | <?php |
||
| 12 | class OnEnterObserver implements \SplObserver |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $eventName; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $eventName |
||
| 21 | */ |
||
| 22 | 1 | public function __construct($eventName = 'onEnter') |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @see SplObserver::update() |
||
| 29 | */ |
||
| 30 | public function update(\SplSubject $stateMachine) |
||
| 38 | } |
||
| 39 |